手机
当前位置:查字典教程网 >编程开发 >安卓软件开发 >android获取手机cpu并判断是单核还是多核
android获取手机cpu并判断是单核还是多核
摘要:复制代码代码如下:/***Getsthenumberofcoresavailableinthisdevice,acrossallproces...

复制代码 代码如下:

/**

* Gets the number of cores available in this device, across all processors.

* Requires: Ability to peruse the filesystem at "/sys/devices/system/cpu"

* @return The number of cores, or 1 if failed to get result

*/

private int getNumCores() {

//Private Class to display only CPU devices in the directory listing

class CpuFilter implements FileFilter {

@Override

public boolean accept(File pathname) {

//Check if filename is "cpu", followed by a single digit number

if(Pattern.matches("cpu[0-9]", pathname.getName())) {

return true;

}

return false;

}

}

try {

//Get directory containing CPU info

File dir = new File("/sys/devices/system/cpu/");

//Filter to only list the devices we care about

File[] files = dir.listFiles(new CpuFilter());

//Return the number of cores (virtual CPU devices)

return files.length;

} catch(Exception e) {

//Default to return 1 core

return 1;

}

}

【android获取手机cpu并判断是单核还是多核】相关文章:

android平台应用GPIO模拟IR控制车载DTV

android4.0 获取手机IP地址的问题

Android读取用户号码,手机串号,SIM卡序列号的实现代码

Android手机保持屏幕高亮方法

android手机音乐播放器实现歌词同步

android IPC之binder通信机制

android判断phonegap是否联网且加载super.loadUrl网址

android 横竖屏限制的配置方法

Android中Service(后台服务)详解

Android获取版本号等信息

精品推荐
分类导航