取得android中linux的内核版本号
2010-05-26 06:06:00 来源:WEB开发网tv01 = (TextView)findViewById(R.id.TextView01);
Process process = null;
try {
process = Runtime.getRuntime().exec("cat /proc/version");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
//get the output line
InputStream outs = process.getInputStream();
InputStreamReader isrout = new InputStreamReader(outs);
BufferedReader brout = new BufferedReader(isrout,8*1024);
String result = "";
String line;
// get the whole standard output string
try {
while ( (line = brout.readLine()) != null) {
result += line;
//result += " ";
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if( result != "" ) {
String Keyword = "version ";
int index = result.indexOf(Keyword);
Log.v("Tom", result);
line = result.substring(index + Keyword.length());
index = line.indexOf(" ");
tv01.setText(line.substring(0,index));
}
android sdk 2.2下的模拟器得到的结果是:
2.6.29-00261-g0097074-dirty
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››linux下两台服务器文件实时同步方案设计和实现
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››Linux文件描述符中的close on exec标志位
- ››Linux下管道使用的一些限制
- ››Linux 误删/usr/bin 解决方法
- ››linux 添加新用户并赋予sudo执行权限
- ››android中查看项目数字证书的两种方法
更多精彩
赞助商链接