Skip to content

Instantly share code, notes, and snippets.

@OhkuboSGMS
Created May 29, 2015 15:40
Show Gist options
  • Save OhkuboSGMS/30da40e31b82b8178495 to your computer and use it in GitHub Desktop.
Save OhkuboSGMS/30da40e31b82b8178495 to your computer and use it in GitHub Desktop.
String version = null;
try {
BufferedReader br = new BufferedReader(new FileReader("/proc/version"));
version = br.readLine();
} catch (FileNotFoundException fex) {
Log.e("tag", fex.toString());
} catch (IOException iex) {
Log.e("tag",iex.toString());
}
TextView text =(TextView)this.findViewById(R.id.textView);
text.setText("カーネルのバージョン:"+'\n'+version+'\n');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment