我想知道我的Android应用程序运行的设备有多快?
在Android上有没有API可以做到?或者我必须自己进行基准测试?
如果设备的CPU速度很慢,我想关闭一些耗时的操作,比如动画或限制同时HTTP请求的最大数量。
答案 0 :(得分:25)
在我看来,最好的方法是监控执行这些操作所需的时间。如果花费太多时间,那么系统太慢了,您可以禁用花哨的功能,直到它足够快。
读取CPU速度或其他规格并尝试判断系统速度是一个坏主意。未来的硬件更改可能会使这些规范变得毫无意义。
比如Pentium 4和Core 2。哪个CPU速度更快,2.4 GHz Pentium 4或1.8 GHz Core 2? 2 GHz Opteron比1.4 GHz Itanium 2更快吗?你怎么知道什么样的ARM CPU实际上更快?
要获得Windows Vista和7的系统速度评级,Microsoft实际上会对计算机进行基准测试。这是确定系统功能的唯一中途准确方法。
看起来好方法是使用SystemClock.uptimeMillis().
答案 1 :(得分:8)
尝试阅读包含cpu信息的/proc/cpuinfo
:
String[] args = {"/system/bin/cat", "/proc/cpuinfo"};
ProcessBuilder pb = new ProcessBuilder(args);
Process process = pb.start();
InputStream in = process.getInputStream();
//read the stream
答案 2 :(得分:2)
基于@dogbane解决方案和此answer,这是我获取BogoMIPS值的实现:
/**
* parse the CPU info to get the BogoMIPS.
*
* @return the BogoMIPS value as a String
*/
public static String getBogoMipsFromCpuInfo(){
String result = null;
String cpuInfo = readCPUinfo();
String[] cpuInfoArray =cpuInfo.split(":");
for( int i = 0 ; i< cpuInfoArray.length;i++){
if(cpuInfoArray[i].contains("BogoMIPS")){
result = cpuInfoArray[i+1];
break;
}
}
if(result != null) result = result.trim();
return result;
}
/**
* @see {https://stackoverflow.com/a/3021088/3014036}
*
* @return the CPU info.
*/
public static String readCPUinfo()
{
ProcessBuilder cmd;
String result="";
InputStream in = null;
try{
String[] args = {"/system/bin/cat", "/proc/cpuinfo"};
cmd = new ProcessBuilder(args);
Process process = cmd.start();
in = process.getInputStream();
byte[] re = new byte[1024];
while(in.read(re) != -1){
System.out.println(new String(re));
result = result + new String(re);
}
} catch(IOException ex){
ex.printStackTrace();
} finally {
try {
if(in !=null)
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return result;
}
答案 3 :(得分:1)
请参考以下提供CPU相关数据的链接