获取cpu序列号

public String[] getCpuInfo() {
        String str1 = "/proc/cpuinfo";
        String str2="";
        String[] cpuInfo={"",""};
        String[] arrayOfString;
        try {
            FileReader fr = new FileReader(str1);
            BufferedReader localBufferedReader = new BufferedReader(fr, 8192);
            str2 = localBufferedReader.readLine();
            Log.i("22",str2);
            arrayOfString = str2.split("\\s+");
            String[] strtemp = str2.split("Serail");
            for(int i = 0; i<strtemp.length; i++)
                Log.i("11",strtemp[i]);
            for (int i = 2; i < arrayOfString.length; i++) {
                cpuInfo[0] = cpuInfo[0] + arrayOfString[i] + " ";
            }
            Log.i("66",cpuInfo[0]);
            str2 = localBufferedReader.readLine();

            arrayOfString = str2.split("\\s+");
            cpuInfo[1] += arrayOfString[2];
            Log.i("33",cpuInfo[1]);
            Log.i("33",cpuInfo[1]);
            localBufferedReader.close();
        } catch (IOException e) {
        }
        return cpuInfo;
    }


public static String getCPUSerial() { String str = "", strCPU = "", cpuAddress = "0000000000000000"; try { //读取CPU信息 Process pp = Runtime.getRuntime().exec("cat /proc/cpuinfo"); InputStreamReader ir = new InputStreamReader(pp.getInputStream()); LineNumberReader input = new LineNumberReader(ir); //查找CPU序列号 for (int i = 1; i < 100; i++) { str = input.readLine(); if (str != null) { //查找到序列号所在行 if (str.indexOf("Serial") > -1) { //提取序列号 strCPU = str.substring(str.indexOf(":") + 1, str.length()); //去空格 cpuAddress = strCPU.trim(); Log.i("88",cpuAddress); break; } } else { //文件结尾 break; } } } catch (Exception ex) { //赋予默认值 ex.printStackTrace(); } return cpuAddress; }




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值