简体   繁体   English

如何在Android上获取CPU使用情况统计信息?

[英]How to get CPU usage statistics on Android?

I want to get the overall CPU usage on Android, similar to what Windows' Task Manager does. 我想获得Android上的整体CPU使用率,类似于Windows的任务管理器。 I can parse the output of the top program included in Android, but if there is a API call that does the same thing, it would be better. 我可以解析Android中包含的top程序的输出,但是如果有一个API调用做同样的事情,那就更好了。

Any pointers? 有什么指针吗?

ATTENTION : This answer is old and does NOT work on newer versions of Android due to enhanced security mechanisms. 注意 :这个答案是旧的, 没有在Android上的由于增强的安全机制较新版本。

For complete CPU usage (not for each process) you can use: 要获得完整的CPU使用率(不适用于每个进程),您可以使用:

    /**
 * 
 * @return integer Array with 4 elements: user, system, idle and other cpu
 *         usage in percentage.
 */
private int[] getCpuUsageStatistic() {

    String tempString = executeTop();

    tempString = tempString.replaceAll(",", "");
    tempString = tempString.replaceAll("User", "");
    tempString = tempString.replaceAll("System", "");
    tempString = tempString.replaceAll("IOW", "");
    tempString = tempString.replaceAll("IRQ", "");
    tempString = tempString.replaceAll("%", "");
    for (int i = 0; i < 10; i++) {
        tempString = tempString.replaceAll("  ", " ");
    }
    tempString = tempString.trim();
    String[] myString = tempString.split(" ");
    int[] cpuUsageAsInt = new int[myString.length];
    for (int i = 0; i < myString.length; i++) {
        myString[i] = myString[i].trim();
        cpuUsageAsInt[i] = Integer.parseInt(myString[i]);
    }
    return cpuUsageAsInt;
}

private String executeTop() {
    java.lang.Process p = null;
    BufferedReader in = null;
    String returnString = null;
    try {
        p = Runtime.getRuntime().exec("top -n 1");
        in = new BufferedReader(new InputStreamReader(p.getInputStream()));
        while (returnString == null || returnString.contentEquals("")) {
            returnString = in.readLine();
        }
    } catch (IOException e) {
        Log.e("executeTop", "error in getting first line of top");
        e.printStackTrace();
    } finally {
        try {
            in.close();
            p.destroy();
        } catch (IOException e) {
            Log.e("executeTop",
                    "error in closing and destroying top process");
            e.printStackTrace();
        }
    }
    return returnString;
}

Have fun with it :) 玩得开心:)

You can reference the "DevTools" project. 您可以参考“DevTools”项目。

Using ActivityManager you can get lots information, such as ActivityManager.RunningAppProcessInfo, ActivityManager.RunningTaskInfo, ... 使用ActivityManager可以获得大量信息,例如ActivityManager.RunningAppProcessInfo,ActivityManager.RunningTaskInfo,...

But I am not sure the result will same as 'top' command. 但我不确定结果会与'top'命令相同。

see ActivityManager 请参阅ActivityManager

You can read /proc/stat and parse the file contents. 您可以读取/proc/stat并解析文件内容。 The first line is like: 第一行是:
cpu 79242 0 74306 842486413 756859 6140 67701 0
The meanings of the columns are as follows, from left to right: 列的含义如下,从左到右:

 - 1st column : user = normal processes executing in user mode
 - 2nd column : nice = niced processes executing in user mode
 - 3rd column : system = processes executing in kernel mode
 - 4th column : idle = twiddling thumbs
 - 5th column : iowait = waiting for I/O to complete
 - 6th column : irq = servicing interrupts
 - 7th column : softirq = servicing softirqs


Average idle percentage : 平均闲置百分比:
X % = ( idle * 100 ) / ( user + nice + system + idle + iowait + irq + softirq )
You can compute the difference in idle between time deltas, and figure CPU usage. 您可以计算时间增量之间的空闲差异,并计算CPU使用率。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM