有没有办法以编程方式检索ARM处理器版本?我正在尝试将其发送到Google Analytics。我被告知它在/ proc / cpuinfo文件夹中,但我不确定如何在代码中检索这些信息。
感谢, 安德鲁
答案 0 :(得分:7)
来自http://android-er.blogspot.com/2009/09/read-android-cpu-info.html:
private String ReadCPUinfo()
{
ProcessBuilder cmd;
String result="";
try{
String[] args = {"/system/bin/cat", "/proc/cpuinfo"};
cmd = new ProcessBuilder(args);
Process process = cmd.start();
InputStream in = process.getInputStream();
byte[] re = new byte[1024];
while(in.read(re) != -1){
System.out.println(new String(re));
result = result + new String(re);
}
in.close();
} catch(IOException ex){
ex.printStackTrace();
}
return result;
}
您只需在结果中的每一行上split
,然后查找以Processor
开头的行。