27

我想从 java 代码计算操作系统的 CPU 使用百分比。

  1. 有几种方法可以通过unix命令 [例如 usingmpstat/proc/stat] 找到它并从Runtime.getRuntime().exec

但我不想使用系统调用。

我试过了ManagementFactory.getOperatingSystemMXBean()

OperatingSystemMXBean osBean =
         (OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean();
System.out.println(osBean.getSystemLoadAverage());

但它给出了 cpu 负载,而不是 cpu 使用率。有没有办法找到使用百分比?

4

2 回答 2

43

在 Java 7 中,您可以像这样获得它:

public static double getProcessCpuLoad() throws Exception {

    MBeanServer mbs    = ManagementFactory.getPlatformMBeanServer();
    ObjectName name    = ObjectName.getInstance("java.lang:type=OperatingSystem");
    AttributeList list = mbs.getAttributes(name, new String[]{ "ProcessCpuLoad" });

    if (list.isEmpty())     return Double.NaN;

    Attribute att = (Attribute)list.get(0);
    Double value  = (Double)att.getValue();

    // usually takes a couple of seconds before we get real values
    if (value == -1.0)      return Double.NaN;
    // returns a percentage value with 1 decimal point precision
    return ((int)(value * 1000) / 10.0);
}
于 2014-02-22T23:25:37.017 回答
0

您可以使用SIGAR API。它是跨平台的(但我只在 Windows 上使用过)。

Javadoc 在此处可用,二进制文件在此处

它是根据 Apache 2.0 许可条款获得许可的。

于 2013-08-28T13:42:38.587 回答