`
zzc1684
  • 浏览: 1220955 次
  • 性别: Icon_minigender_1
  • 来自: 广州
文章分类
社区版块
存档分类
最新评论

java获得CPU使用率,系统内存,虚拟机内存等情况

    博客分类:
  • Java
阅读更多
JXM:Monitoring and Management Interface for the Java? Platform 

通过jmx可以监控vm内存使用,系统内存使用等 


以下是网上某博客代码,特点是通过window和linux命令获得CPU使用率。 


   利用java程序实现获取计算机cpu利用率和内存使用信息。 

    创建一个Bean用来存贮要得到的信 

public class MonitorInfoBean { 
    /** 可使用内存. */ 
    private long totalMemory; 
   
    /**  剩余内存. */ 
    private long freeMemory; 
   
    /** 最大可使用内存. */ 
    private long maxMemory; 
   
    /** 操作系统. */ 
    private String osName; 
   
    /** 总的物理内存. */ 
    private long totalMemorySize; 
   
    /** 剩余的物理内存. */ 
    private long freePhysicalMemorySize; 
   
    /** 已使用的物理内存. */ 
    private long usedMemory; 
   
    /** 线程总数. */ 
    private int totalThread; 
   
    /** cpu使用率. */ 
    private double cpuRatio; 

    public long getFreeMemory() { 
        return freeMemory; 
    } 

    public void setFreeMemory(long freeMemory) { 
        this.freeMemory = freeMemory; 
    } 

    public long getFreePhysicalMemorySize() { 
        return freePhysicalMemorySize; 
    } 

    public void setFreePhysicalMemorySize(long freePhysicalMemorySize) { 
        this.freePhysicalMemorySize = freePhysicalMemorySize; 
    } 

    public long getMaxMemory() { 
        return maxMemory; 
    } 

    public void setMaxMemory(long maxMemory) { 
        this.maxMemory = maxMemory; 
    } 

    public String getOsName() { 
        return osName; 
    } 

    public void setOsName(String osName) { 
        this.osName = osName; 
    } 

    public long getTotalMemory() { 
        return totalMemory; 
    } 

    public void setTotalMemory(long totalMemory) { 
        this.totalMemory = totalMemory; 
    } 

    public long getTotalMemorySize() { 
        return totalMemorySize; 
    } 

    public void setTotalMemorySize(long totalMemorySize) { 
        this.totalMemorySize = totalMemorySize; 
    } 

    public int getTotalThread() { 
        return totalThread; 
    } 

    public void setTotalThread(int totalThread) { 
        this.totalThread = totalThread; 
    } 

    public long getUsedMemory() { 
        return usedMemory; 
    } 

    public void setUsedMemory(long usedMemory) { 
        this.usedMemory = usedMemory; 
    } 

    public double getCpuRatio() { 
        return cpuRatio; 
    } 

    public void setCpuRatio(double cpuRatio) { 
        this.cpuRatio = cpuRatio; 
    } 
} 

    之后,建立bean的接口 

public interface IMonitorService { 
    public MonitorInfoBean getMonitorInfoBean() throws Exception; 

} 

  然后,就是最关键的,得到cpu的利用率,已用内存,可用内存,最大内存等信息。 

import java.io.InputStreamReader; 
import java.io.LineNumberReader; 

import sun.management.ManagementFactory; 

import com.sun.management.OperatingSystemMXBean; 
import java.io.*; 
import java.util.StringTokenizer; 

/** 

* 获取系统信息的业务逻辑实现类. 
* @author GuoHuang 
*/ 
public class MonitorServiceImpl implements IMonitorService { 
   
    private static final int CPUTIME = 30; 

    private static final int PERCENT = 100; 

    private static final int FAULTLENGTH = 10; 
   
    private static final File versionFile = new File("/proc/version"); 
    private static String linuxVersion = null; 

    /** 
     * 获得当前的监控对象. 
     * @return 返回构造好的监控对象 
     * @throws Exception 
     * @author GuoHuang 
     */ 
    public MonitorInfoBean getMonitorInfoBean() throws Exception { 
        int kb = 1024; 
       
        // 可使用内存 
        long totalMemory = Runtime.getRuntime().totalMemory() / kb; 
        // 剩余内存 
        long freeMemory = Runtime.getRuntime().freeMemory() / kb; 
        // 最大可使用内存 
        long maxMemory = Runtime.getRuntime().maxMemory() / kb; 

        OperatingSystemMXBean osmxb = (OperatingSystemMXBean) ManagementFactory 
                .getOperatingSystemMXBean(); 

        // 操作系统 
        String osName = System.getProperty("os.name"); 
        // 总的物理内存 
        long totalMemorySize = osmxb.getTotalPhysicalMemorySize() / kb; 
        // 剩余的物理内存 
        long freePhysicalMemorySize = osmxb.getFreePhysicalMemorySize() / kb; 
        // 已使用的物理内存 
        long usedMemory = (osmxb.getTotalPhysicalMemorySize() - osmxb 
                .getFreePhysicalMemorySize()) 
                / kb; 

        // 获得线程总数 
        ThreadGroup parentThread; 
        for (parentThread = Thread.currentThread().getThreadGroup(); parentThread 
                .getParent() != null; parentThread = parentThread.getParent()) 
            ; 
        int totalThread = parentThread.activeCount(); 

        double cpuRatio = 0; 
        if (osName.toLowerCase().startsWith("windows")) { 
            cpuRatio = this.getCpuRatioForWindows(); 
        } 
        else { 
         cpuRatio = this.getCpuRateForLinux(); 
        } 
       
        // 构造返回对象 
        MonitorInfoBean infoBean = new MonitorInfoBean(); 
        infoBean.setFreeMemory(freeMemory); 
        infoBean.setFreePhysicalMemorySize(freePhysicalMemorySize); 
        infoBean.setMaxMemory(maxMemory); 
        infoBean.setOsName(osName); 
        infoBean.setTotalMemory(totalMemory); 
        infoBean.setTotalMemorySize(totalMemorySize); 
        infoBean.setTotalThread(totalThread); 
        infoBean.setUsedMemory(usedMemory); 
        infoBean.setCpuRatio(cpuRatio); 
        return infoBean; 
    } 
    private static double getCpuRateForLinux(){ 
        InputStream is = null; 
        InputStreamReader isr = null; 
        BufferedReader brStat = null; 
        StringTokenizer tokenStat = null; 
        try{ 
            System.out.println("Get usage rate of CUP , linux version: "+linuxVersion); 

            Process process = Runtime.getRuntime().exec("top -b -n 1"); 
            is = process.getInputStream();                   
            isr = new InputStreamReader(is); 
            brStat = new BufferedReader(isr); 
           
            if(linuxVersion.equals("2.4")){ 
                brStat.readLine(); 
                brStat.readLine(); 
                brStat.readLine(); 
                brStat.readLine(); 
               
                tokenStat = new StringTokenizer(brStat.readLine()); 
                tokenStat.nextToken(); 
                tokenStat.nextToken(); 
                String user = tokenStat.nextToken(); 
                tokenStat.nextToken(); 
                String system = tokenStat.nextToken(); 
                tokenStat.nextToken(); 
                String nice = tokenStat.nextToken(); 
               
                System.out.println(user+" , "+system+" , "+nice); 
               
                user = user.substring(0,user.indexOf("%")); 
                system = system.substring(0,system.indexOf("%")); 
                nice = nice.substring(0,nice.indexOf("%")); 
               
                float userUsage = new Float(user).floatValue(); 
                float systemUsage = new Float(system).floatValue(); 
                float niceUsage = new Float(nice).floatValue(); 
               
                return (userUsage+systemUsage+niceUsage)/100; 
            }else{ 
                brStat.readLine(); 
                brStat.readLine(); 
                   
                tokenStat = new StringTokenizer(brStat.readLine()); 
                tokenStat.nextToken(); 
                tokenStat.nextToken(); 
                tokenStat.nextToken(); 
                tokenStat.nextToken(); 
                tokenStat.nextToken(); 
                tokenStat.nextToken(); 
                tokenStat.nextToken(); 
                String cpuUsage = tokenStat.nextToken(); 
                   
               
                System.out.println("CPU idle : "+cpuUsage); 
                Float usage = new Float(cpuUsage.substring(0,cpuUsage.indexOf("%"))); 
               
                return (1-usage.floatValue()/100); 
            } 

            
        } catch(IOException ioe){ 
            System.out.println(ioe.getMessage()); 
            freeResource(is, isr, brStat); 
            return 1; 
        } finally{ 
            freeResource(is, isr, brStat); 
        } 

    } 
    private static void freeResource(InputStream is, InputStreamReader isr, BufferedReader br){ 
        try{ 
            if(is!=null) 
                is.close(); 
            if(isr!=null) 
                isr.close(); 
            if(br!=null) 
                br.close(); 
        }catch(IOException ioe){ 
            System.out.println(ioe.getMessage()); 
        } 
    } 


    /** 
     * 获得CPU使用率. 
     * @return 返回cpu使用率 
     * @author GuoHuang 
     */ 
    private double getCpuRatioForWindows() { 
        try { 
            String procCmd = System.getenv("windir") 
                    + "\\system32\\wbem\\wmic.exe process get Caption,CommandLine," 
                    + "KernelModeTime,ReadOperationCount,ThreadCount,UserModeTime,WriteOperationCount"; 
            // 取进程信息 
            long[] c0 = readCpu(Runtime.getRuntime().exec(procCmd)); 
            Thread.sleep(CPUTIME); 
            long[] c1 = readCpu(Runtime.getRuntime().exec(procCmd)); 
            if (c0 != null && c1 != null) { 
                long idletime = c1[0] - c0[0]; 
                long busytime = c1[1] - c0[1]; 
                return Double.valueOf( 
                        PERCENT * (busytime) / (busytime + idletime)) 
                        .doubleValue(); 
            } else { 
                return 0.0; 
            } 
        } catch (Exception ex) { 
            ex.printStackTrace(); 
            return 0.0; 
        } 
    } 

    /**      

* 读取CPU信息. 
     * @param proc 
     * @return 
     * @author GuoHuang 
     */ 
    private long[] readCpu(final Process proc) { 
        long[] retn = new long[2]; 
        try { 
            proc.getOutputStream().close(); 
            InputStreamReader ir = new InputStreamReader(proc.getInputStream()); 
            LineNumberReader input = new LineNumberReader(ir); 
            String line = input.readLine(); 
            if (line == null || line.length() < FAULTLENGTH) { 
                return null; 
            } 
            int capidx = line.indexOf("Caption"); 
            int cmdidx = line.indexOf("CommandLine"); 
            int rocidx = line.indexOf("ReadOperationCount"); 
            int umtidx = line.indexOf("UserModeTime"); 
            int kmtidx = line.indexOf("KernelModeTime"); 
            int wocidx = line.indexOf("WriteOperationCount"); 
            long idletime = 0; 
            long kneltime = 0; 
            long usertime = 0; 
            while ((line = input.readLine()) != null) { 
                if (line.length() < wocidx) { 
                    continue; 
                } 
                // 字段出现顺序:Caption,CommandLine,KernelModeTime,ReadOperationCount, 
                // ThreadCount,UserModeTime,WriteOperation 
                String caption = Bytes.substring(line, capidx, cmdidx - 1) 
                        .trim(); 
                String cmd = Bytes.substring(line, cmdidx, kmtidx - 1).trim(); 
                if (cmd.indexOf("wmic.exe") >= 0) { 
                    continue; 
                } 
                // log.info("line="+line); 
                if (caption.equals("System Idle Process") 
                        || caption.equals("System")) { 
                    idletime += Long.valueOf( 
                            Bytes.substring(line, kmtidx, rocidx - 1).trim()) 
                            .longValue(); 
                    idletime += Long.valueOf( 
                            Bytes.substring(line, umtidx, wocidx - 1).trim()) 
                            .longValue(); 
                    continue; 
                } 

                kneltime += Long.valueOf( 
                        Bytes.substring(line, kmtidx, rocidx - 1).trim()) 
                        .longValue(); 
                usertime += Long.valueOf( 
                        Bytes.substring(line, umtidx, wocidx - 1).trim()) 
                        .longValue(); 
            } 
            retn[0] = idletime; 
            retn[1] = kneltime + usertime; 
            return retn; 
        } catch (Exception ex) { 
            ex.printStackTrace(); 
        } finally { 
            try { 
                proc.getInputStream().close(); 
            } catch (Exception e) { 
                e.printStackTrace(); 
            } 
        } 
        return null; 
    } 
   
    /**     测试方法. 
     * @param args 
     * @throws Exception 
     * @author GuoHuang 
       */ 
    public static void main(String[] args) throws Exception { 
        IMonitorService service = new MonitorServiceImpl(); 
        MonitorInfoBean monitorInfo = service.getMonitorInfoBean(); 
        System.out.println("cpu占有率=" + monitorInfo.getCpuRatio()); 
       
        System.out.println("可使用内存=" + monitorInfo.getTotalMemory()); 
        System.out.println("剩余内存=" + monitorInfo.getFreeMemory()); 
        System.out.println("最大可使用内存=" + monitorInfo.getMaxMemory()); 
       
        System.out.println("操作系统=" + monitorInfo.getOsName()); 
        System.out.println("总的物理内存=" + monitorInfo.getTotalMemorySize() + "kb"); 
        System.out.println("剩余的物理内存=" + monitorInfo.getFreeMemory() + "kb"); 
        System.out.println("已使用的物理内存=" + monitorInfo.getUsedMemory() + "kb"); 
        System.out.println("线程总数=" + monitorInfo.getTotalThread() + "kb"); 
    } 
} 

    其中,Bytes类用来处理字符串 

   public class Bytes { 
    public static String substring(String src, int start_idx, int end_idx){ 
        byte[] b = src.getBytes(); 
        String tgt = ""; 
        for(int i=start_idx; i<=end_idx; i++){ 
            tgt +=(char)b[i]; 
        } 
        return tgt; 
    } 
} 


 

分享到:
评论

相关推荐

    java获得CPU使用率,系统内存,虚拟机内存等情况工具类

    通过jmx可以监控vm内存使用,系统内存使用等 ,特点是通过window和linux命令获得CPU使用率。

    测量Java应用程序的CPU和内存占用率

    通过JNI,我们可以编写特定于操作系统的C/C++代码来调用系统调用,获取关于CPU使用率和内存占用的数据,然后将这些信息传递回Java应用程序。相比依赖于解析操作系统特定的命令行工具(如Unix的`ps`命令)输出,这种...

    java 绘制CPU使用率图形 源代码

    在Java编程语言中,开发一个绘制CPU使用率图形的程序是一项技术挑战,它涉及到系统监控、图形用户界面(GUI)以及实时数据处理等多方面的知识。这个程序的主要目的是模拟任务管理器的部分功能,显示计算机的CPU使用...

    java监控linux cpu使用率

    总的来说,Java监控Linux CPU使用率是一个实用的技能,可以帮助开发人员优化系统性能,预防可能的资源瓶颈,提高服务的可用性和稳定性。通过理解`OperatingSystemMXBean`接口及其使用方法,你可以轻松地在Java应用中...

    通过snmp的OID获取对方主机的内存利用率及CPU的使用率

    例如,内存利用率可能对应于`HOST-RESOURCES-MIB::hrMemorySize`或`UCD-SNMP-MIB::memAvailReal`等OID,而CPU使用率可能对应于`HOST-RESOURCES-MIB::hrProcessorLoad`或者`RFC1213-MIB::sysUpTime`配合计算得出。...

    Java获取计算机CPU、内存等信息

    在Java编程中,获取计算机的硬件信息,如CPU使用率和内存使用情况,是一项常见的需求。这主要应用于系统监控、性能分析以及资源管理等方面。Java虽然不像C++或C#那样可以直接调用操作系统API,但它提供了Java ...

    使用sigar获取系统信息,内存,磁盘,jvm虚拟机等

    要获取CPU使用率,可以使用`Sigar.getCpuPerc()`方法,它返回一个CpuPerc结构体,包含用户CPU时间、系统CPU时间、空闲时间等。这些信息可用于计算整体CPU利用率。 三、获取磁盘信息 Sigar提供了丰富的磁盘信息获取...

    深入理解Java虚拟机(jvm性能调优+内存模型+虚拟机原理).zip

    这些工具可以实时监控JVM的内存状态、CPU使用率、线程情况,帮助定位性能瓶颈。 总的来说,深入理解Java虚拟机对于开发高性能、稳定的Java应用至关重要。通过学习JVM性能调优,我们可以优化应用程序的资源利用,...

    java在cpu的占有率

    以上代码展示了如何通过 Java 获取系统的监控信息,包括 CPU 使用率、内存使用情况等,并且针对不同操作系统提供了不同的实现方式。这些信息对系统监控和性能优化具有重要的参考价值。通过分析这些数据,开发人员...

    java-虚拟机 操作系统监控工具-源码

    支持Java虚拟机监控:GC信息、内存使用情况、内存池信息、类加载器、线程堆栈 支持生成火焰图(采样事件包括CPU、内存分配、线程栈、Java方法调用栈等) 支持Java代码反编译生成 支持Java代码热更新(可指定...

    java读取CPU内存信息

    对于CPU利用率的获取,Java的标准库并不直接提供这个功能,但可以通过`java.lang.management.ThreadMXBean`获取线程的信息,然后计算CPU使用率。`ThreadMXBean`提供了`getThreadCpuTime()`和`getTotalThreadCount()`...

    CPU使用率查看工具

    在IT领域,了解和监控设备性能是至关重要的,特别是对于CPU使用率的监控。CPU(中央处理器)是计算机系统的核心,处理所有计算和逻辑任务。本文将深入探讨如何使用"CPU使用率查看工具"来有效地监测和分析设备的CPU...

    JVSTAT查看java虚拟机内存情况

    - **CPU 使用率**:JVSTAT 可以显示JVM的CPU使用情况,以及各个线程的CPU消耗。 - **方法区/元空间**:跟踪方法区的使用,确保不会因过度加载类而导致溢出。 6. **使用JVSTAT进行故障排查**: 当应用出现性能...

    java中获取CPU 内存的方法

    在Java编程中,获取系统资源信息,如CPU使用率和内存使用情况,是常见的需求,尤其是在性能监控和问题排查时。以下将详细解释如何在Java中实现这些功能,并结合提供的代码片段进行说明。 首先,创建一个`...

    java虚拟机规范PDF版本

    9. **JVM调优**:通过监控JVM的各种指标,如CPU使用率、内存消耗等,我们可以使用各种工具进行性能调优,提高应用效率。 10. **JVM相关工具**:如JConsole、VisualVM、JProfiler等,这些工具可以帮助我们直接观察和...

    java虚拟机监控

    使用jvisualvm,开发者可以实时查看CPU使用率、内存消耗、线程状态、堆内存分配以及方法调用等信息。这对于诊断性能问题和进行故障排除非常有帮助。 以下是一些关于Java虚拟机监控和jvisualvm应用的关键知识点: 1...

    Linux查看CPU和内存使用情况查看jvm内存使用情况.pdf

    `t`开关任务和CPU信息显示,`m`开关内存和交换分区信息显示,`N`、`P`、`M`分别按PID、CPU使用率和内存使用率排序进程,`h`显示帮助,`n`设置进程列表显示数量,`q`退出`top`,`s`调整更新周期等。 此外,要查看...

    weblgicJVM内存不释放,CPU使用率居高不下建议.

    - 加强对服务器性能指标的监控,如CPU使用率、内存使用情况等,以便及时发现潜在问题。 - 建立一套完善的应急响应机制,确保在出现问题时能够快速响应并采取有效的应对措施。 #### 四、总结与展望 针对WebLogic...

    Linux查看CPU和内存使用情况查看jvm内存使用情况.docx

    - `P`:按CPU使用率排序显示进程列表。 - `M`:按内存使用率排序显示进程列表。 - `h`:显示帮助信息。 - `n`:设置显示的进程数量。 - `q`:退出`top`。 3. **使用`free`命令查看内存使用情况** `free`命令...

Global site tag (gtag.js) - Google Analytics