`
lc52520
  • 浏览: 369052 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

不使用JNI获得系统信息【Z】

    博客分类:
  • java
阅读更多

在Java中,可以获得总的物理内存、剩余的物理内存、已使用的物理内存等信息,下面例子可以取得这些信息,并且获得在Windows下的内存使用率。
首先编写一个MonitorInfoBean类,用来装载监控的一些信息,包括物理内存、剩余的物理内存、已使用的物理内存、内存使用率等字段,该类的代码如下:

 

package com.amgkaka.performance;

/** *//**
 * 监视信息的JavaBean类.
 * @author  amg
 * @version 1.0 
 * Creation date: 2008-4-25 - 上午10:37:00
 */
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;
    }
}

 

  接着编写一个获得当前的监控信息的接口,该类的代码如下所示:

 

package com.amgkaka.performance;

/** *//**
 * 获取系统信息的业务逻辑类接口.
 * @author amg * @version 1.0 
 * Creation date: 2008-3-11 - 上午10:06:06
 */
public interface IMonitorService {
    /** *//**
     * 获得当前的监控对象.
     * @return 返回构造好的监控对象
     * @throws Exception
     * @author amgkaka
     * Creation date: 2008-4-25 - 上午10:45:08
     */
    public MonitorInfoBean getMonitorInfoBean() throws Exception;

}

   该类的实现类MonitorServiceImpl如下所示:

 

package com.amgkaka.performance;

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

import sun.management.ManagementFactory;

import com.sun.management.OperatingSystemMXBean;

/** *//**
 * 获取系统信息的业务逻辑实现类.
 * @author amg * @version 1.0 Creation date: 2008-3-11 - 上午10:06:06
 */
public class MonitorServiceImpl implements IMonitorService {
    //可以设置长些,防止读到运行此次系统检查时的cpu占用率,就不准了
    private static final int CPUTIME = 5000;

    private static final int PERCENT = 100;

    private static final int FAULTLENGTH = 10;

    /** *//**
     * 获得当前的监控对象.
     * @return 返回构造好的监控对象
     * @throws Exception
     * @author amg     * Creation date: 2008-4-25 - 上午10:45:08
     */
    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();
        }
        
        // 构造返回对象
        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;
    }

    /** *//**
     * 获得CPU使用率.
     * @return 返回cpu使用率
     * @author amg     * Creation date: 2008-4-25 - 下午06:05:11
     */
    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 amg     * Creation date: 2008-4-25 - 下午06:10:14
     */
    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 amg     * Creation date: 2008-4-30 - 下午04:47:29
     */
    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");
    }
}

 

  该实现类中需要用到一个自己编写byte的工具类,该类的代码如下所示:

 

package com.amgkaka.performance;

/** *//**
 * byte操作类.
 * @author amg * @version 1.0 
 * Creation date: 2008-4-30 - 下午04:57:23
 */
public class Bytes {
    /** *//**
     * 由于String.subString对汉字处理存在问题(把一个汉字视为一个字节),因此在
     * 包含汉字的字符串时存在隐患,现调整如下:
     * @param src 要截取的字符串
     * @param start_idx 开始坐标(包括该坐标)
     * @param end_idx   截止坐标(包括该坐标)
     * @return
     */
    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;
    }
}
分享到:
评论

相关推荐

    instantclient_11_2.7z

    在解压"instantclient_11_2.7z"后,用户通常会得到一系列的库文件(如libclntsh.so、libociicus.so等)、头文件和文档,这些文件需要被添加到系统的库路径中,以便应用程序能够找到并使用它们。例如,在Linux系统上...

    jdk-11.0.13_linux-x64_bin.tar.gz.7z

    标题中的"jdk-11.0.13_linux-x64_bin.tar.gz.7z"表明这是一个针对Linux 64位系统的Java Development Kit (JDK) 的版本11.0.13,它被压缩成了两个层次:首先是一个`.tar.gz`归档,然后这个归档又被7-Zip软件进行了`.7...

    rxtxcomm.zip

    RXTX是一个开源的Java库,它提供了与操作系统底层串行和并行通信接口的绑定,使得Java程序员可以在不依赖于平台的情况下进行串口操作。 “短信猫”通常指的是能够通过串口连接到计算机,并通过GSM网络发送和接收...

    uCOSII移植源码+官方例程源码.7z.zip

    如果要将Java与uCOSII结合,可能涉及到使用Java作为嵌入式系统的上层应用开发语言,通过JNI(Java Native Interface)与uCOSII进行交互,实现上层逻辑的灵活性和底层操作系统的实时性。 由于标签信息缺失,无法...

    jdk-11.0.6_windows-x64_bin.exe.7z

    Java JDK 11.0.6 Windows 64位安装包是Java开发工具包的一个版本,主要用于在Windows操作系统上安装Java开发环境。...对于任何希望在Windows 64位系统上进行Java开发的个人或团队来说,这是一个必不可少的组件。

    jdk-13.0.2_windows-x64_bin.zip.7z

    1. **Switch Expressions增强**:在JDK 13中,switch语句得到了进一步的改进,现在可以作为表达式使用,这使得代码更加简洁和可读。开发者可以通过switch表达式更方便地处理多种情况,尤其是在流式编程中。 2. **...

    jdk1.8.0_181(64位).7z

    与可插拔类型系统一起使用时,此功能可以改进代码的类型检查。 改进的类型推断。 方法参数反射。 2、集合 新java.util.stream包中的类提供Stream API以支持对元素流的功能样式操作。Stream API集成到Collections...

    opencv-4.0.1-android-sdk.zip.7z

    `opencv-4.0.1-android-sdk.zip.7z` 是一个包含了OpenCV 4.0.1版本Android SDK的压缩包,它为Android开发者提供了集成OpenCV库所需的所有资源和文档。 OpenCV 4.0.1是该库的一个重大更新,引入了多项新功能和性能...

    jdk-11.0.7_windows-x64_bin.zip

    7. **ZGC (Z Garbage Collector)**:这是一个实验性的低延迟垃圾收集器,旨在减少大型应用的暂停时间,特别适合实时系统。 压缩包内的"jdk-11.0.7"目录通常包含以下关键文件和目录: - `bin`:包含可执行文件,如`...

    java11_64_bin.zip jdk11免费下载

    8. **改进的JNI(Java Native Interface)**:简化了JNI的使用,使Java与C/C++代码的交互更加方便。 9. **其他小改进**:包括新的`ProcessHandle` API以获取进程信息,对`Socket`的改进,以及对`FileChannel`的改进...

    android-ndk-r7

    在NDK-r7版本中,开发者可以使用JNI(Java Native Interface)来与Java代码交互。JNI是一种规范,允许Java代码调用原生代码,反之亦然,这对于混合编程非常有用。通过JNI,开发者可以编写高性能的原生代码模块,同时...

    java11版本-旧版本资源

    Java 9引入了模块系统,而在Java 11中,这一系统得到了进一步完善。模块化有助于提高应用程序的可维护性和性能,通过明确的依赖关系来组织代码,减少类路径冲突,并允许JVM更高效地加载和处理类。 2. **HTTP客户端...

    ibmjdk1.6.0.rar

    在Windows或Linux系统中,解压"ibmjdk1.6.0.rar"通常会得到一个包含bin、lib、jre等目录的结构,这些目录包含着IBM JDK的核心组件: 1. **bin目录**:包含可执行文件,如javac(Java编译器)、java(Java虚拟机)、...

    jdk-11.0.9_windows-x64_bin.exe

    5. **改进的JNI(JEP 330)**:增强了Java本地接口(JNI),简化了与本地代码的交互。 6. **增强的switch语句(JEP 305)**:switch语句得到了扩展,支持了表达式和案例标签,增强了其表达能力。 7. **其他改进和...

    Java虚拟机规范(Java SE 7).7z

    5. 文件系统API更新:NIO.2引入了更现代的文件系统API,支持异步I/O和路径操作。 6. try-with-resources语句:自动关闭资源,减少资源泄露的风险。 7. 更强的类型推断:编译器可以更好地推断泛型的类型参数,使代码...

    JDK22 开发工具包!!!

    Java Native Interface(JNI)的安全性得到提升,类型检查更加严格,减少了因类型不匹配导致的错误。 7. **Javadoc更新(JEP 426)** Javadoc工具的输出格式得到了优化,增强了对HTML5的支持,提高了文档的可读性...

    jdk-11.0.11_linux-x64_bin.tar.gz

    8. **改进的JNI(Java Native Interface)**:JDK 11对JNI进行了一些改进,包括自动注册本地方法,简化了使用JNI编写原生代码的过程。 9. **其他小改进**:包括`Optional`类的新方法、`ProcessHandle`的增强、`var`...

    mingw_x86_64-posix-seh

    "x86_64"代表该版本支持AMD64或Intel 64架构的处理器,这是当前大多数64位Windows系统所使用的硬件平台。“posix-seh”则指的是POSIX信号处理(Signal Handling)和Windows的结构化异常处理(Structured Exception ...

    openjdk-17.0.2(openjdk-17.0.2_linux-x64_bin.tar.gz)

    Java 17是长期支持(LTS)版本,这意味着它将获得更长时间的安全更新和支持,对于企业级应用来说是个重要的选择。 在`openjdk-17.0.2_linux-x64_bin.tar.gz`压缩包中,主要包含的文件是`jdk-17.0.2`,这通常是一个...

    jdk-11.0.18-linux-aarch64-bin.tar.gz

    1. **模块化系统(Project Jigsaw)**:这是Java 9引入的重要特性,但在JDK 11中得到了进一步的优化和完善。模块化系统将JDK分解为独立的模块,有助于提高代码的封装性和可维护性,同时也减少了运行时内存需求。 2....

Global site tag (gtag.js) - Google Analytics