gpt4 book ai didi

android - 如何在 Android 上找到 cpu 型号名称

转载 作者:太空狗 更新时间:2023-10-29 15:03:35 32 4
gpt4 key购买 nike

很长一段时间以来,我一直在努力寻找如何获取 cpu 型号名称和供应商,但没有成功,我尝试使用 cat /proc/cpuinfo 并且我正在搜索/sys/ 文件。

你能帮我解决这个问题吗?

最佳答案

/proc/cpuinfo 是访问 CPU 信息的正确方式。你打算如何阅读它?

试试这个:

 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;
}

关于android - 如何在 Android 上找到 cpu 型号名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24233664/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com