我想学习我的手机cpu型号名称,我尝试使用/ proc / cpuinfo和很多代码,但我失败了。任何人都可以帮助我吗?
答案 0 :(得分:5)
运行
$ adb shell cat /proc/cpuinfo
答案 1 :(得分:1)
这是我的代码
public static String getCpuName() {
try {
FileReader fr = new FileReader("/proc/cpuinfo");
BufferedReader br = new BufferedReader(fr);
String text = br.readLine();
br.close();
String[] array = text.split(":\\s+", 2);
if (array.length >= 2) {
return array[1];
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
你的代码怎么样?