這篇文章給大家介紹java中怎么獲取系統(tǒng)CPU、內(nèi)存占用,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
我們提供的服務(wù)有:成都網(wǎng)站制作、成都網(wǎng)站建設(shè)、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、麗水ssl等。為成百上千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的麗水網(wǎng)站制作公司
說明:獲取的數(shù)據(jù)是操作系統(tǒng)整體的資源占用情況,不是當(dāng)前 java進(jìn)程占用的資源
1. 獲取系統(tǒng)CPU占用情況 :
import java.lang.management.ManagementFactory;import com.sun.management.OperatingSystemMXBean; private static OperatingSystemMXBean osmxb = (OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean();public static int cpuLoad() { double cpuLoad = osmxb.getSystemCpuLoad(); int percentCpuLoad = (int) (cpuLoad * 100); return percentCpuLoad;}
注意:JDK必須是1.8及以上的
返回的值是CPU的百分比,取的是整數(shù)值
2. 獲取系統(tǒng)內(nèi)存占用情況
import java.lang.management.ManagementFactory;import com.sun.management.OperatingSystemMXBean; private static OperatingSystemMXBean osmxb = (OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean();public static int memoryLoad() { double totalvirtualMemory = osmxb.getTotalPhysicalMemorySize(); double freePhysicalMemorySize = osmxb.getFreePhysicalMemorySize(); double value = freePhysicalMemorySize/totalvirtualMemory; int percentMemoryLoad = (int) ((1-value)*100); return percentMemoryLoad;}
注意:JDK為1.6及以上版本
返回的值是內(nèi)存的百分比,取的是整數(shù)值
關(guān)于java中怎么獲取系統(tǒng)CPU、內(nèi)存占用就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。