java获取服务器CPU,内存,硬盘使用量

2024-03-01 06:38

本文主要是介绍java获取服务器CPU,内存,硬盘使用量,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

  1. /** 
  2.  * <获取系统信息类> 
  3.  * <获取系统信息,如CPU、内存、硬盘使用情况> 
  4.  * @author  wenkaixuan 
  5.  * @version  [版本号, 2012-5-9] 
  6.  * @see  [相关类/方法] 
  7.  * @since  [产品/模块版本] 
  8.  */  
  9. public class GetSystemInfo  
  10. {  
  11.     private static final int CPUTIME = 500;  
  12.       
  13.     private static final int PERCENT = 100;  
  14.       
  15.     private static final int FAULTLENGTH = 10;  
  16.       
  17.     //获取内存使用率  
  18.     public static String getMemery()  
  19.     {  
  20.         OperatingSystemMXBean osmxb = (OperatingSystemMXBean)ManagementFactory.getOperatingSystemMXBean();  
  21.         // 总的物理内存+虚拟内存  
  22.         long totalvirtualMemory = osmxb.getTotalSwapSpaceSize();  
  23.         // 剩余的物理内存  
  24.         long freePhysicalMemorySize = osmxb.getFreePhysicalMemorySize();  
  25.         Double compare = (Double)(1 - freePhysicalMemorySize * 1.0 / totalvirtualMemory) * 100;  
  26.         String str = "内存已使用:" + compare.intValue() + "%";  
  27.         return str;  
  28.     }  
  29.       
  30.     //获取文件系统使用率  
  31.     public static List<String> getDisk()  
  32.     {  
  33.         // 操作系统  
  34.         List<String> list = new ArrayList<String>();  
  35.         for (char c = 'A'; c <= 'Z'; c++)  
  36.         {  
  37.             String dirName = c + ":/";  
  38.             File win = new File(dirName);  
  39.             if (win.exists())  
  40.             {  
  41.                 long total = (long)win.getTotalSpace();  
  42.                 long free = (long)win.getFreeSpace();  
  43.                 Double compare = (Double)(1 - free * 1.0 / total) * 100;  
  44.                 String str = c + ":盘  已使用 " + compare.intValue() + "%";  
  45.                 list.add(str);  
  46.             }  
  47.         }  
  48.         return list;  
  49.     }  
  50.       
  51.     //获得cpu使用率  
  52.     public static String getCpuRatioForWindows()  
  53.     {  
  54.         try  
  55.         {  
  56.             String procCmd =  
  57.                 System.getenv("windir")  
  58.                     + "\\system32\\wbem\\wmic.exe process get Caption,CommandLine,KernelModeTime,ReadOperationCount,ThreadCount,UserModeTime,WriteOperationCount";  
  59.             // 取进程信息  
  60.             long[] c0 = readCpu(Runtime.getRuntime().exec(procCmd));  
  61.             Thread.sleep(CPUTIME);  
  62.             long[] c1 = readCpu(Runtime.getRuntime().exec(procCmd));  
  63.             if (c0 != null && c1 != null)  
  64.             {  
  65.                 long idletime = c1[0] - c0[0];  
  66.                 long busytime = c1[1] - c0[1];  
  67.                 return "CPU使用率:" + Double.valueOf(PERCENT * (busytime) * 1.0 / (busytime + idletime)).intValue() + "%";  
  68.             }  
  69.             else  
  70.             {  
  71.                 return "CPU使用率:" + 0 + "%";  
  72.             }  
  73.         }  
  74.         catch (Exception ex)  
  75.         {  
  76.             ex.printStackTrace();  
  77.             return "CPU使用率:" + 0 + "%";  
  78.         }  
  79.     }  
  80.       
  81.     //读取cpu相关信息  
  82.     private static long[] readCpu(final Process proc)  
  83.     {  
  84.         long[] retn = new long[2];  
  85.         try  
  86.         {  
  87.             proc.getOutputStream().close();  
  88.             InputStreamReader ir = new InputStreamReader(proc.getInputStream());  
  89.             LineNumberReader input = new LineNumberReader(ir);  
  90.             String line = input.readLine();  
  91.             if (line == null || line.length() < FAULTLENGTH)  
  92.             {  
  93.                 return null;  
  94.             }  
  95.             int capidx = line.indexOf("Caption");  
  96.             int cmdidx = line.indexOf("CommandLine");  
  97.             int rocidx = line.indexOf("ReadOperationCount");  
  98.             int umtidx = line.indexOf("UserModeTime");  
  99.             int kmtidx = line.indexOf("KernelModeTime");  
  100.             int wocidx = line.indexOf("WriteOperationCount");  
  101.             long idletime = 0;  
  102.             long kneltime = 0;  
  103.             long usertime = 0;  
  104.             while ((line = input.readLine()) != null)  
  105.             {  
  106.                 if (line.length() < wocidx)  
  107.                 {  
  108.                     continue;  
  109.                 }  
  110.                 // 字段出现顺序:Caption,CommandLine,KernelModeTime,ReadOperationCount,  
  111.                 // ThreadCount,UserModeTime,WriteOperation  
  112.                 String caption = substring(line, capidx, cmdidx - 1).trim();  
  113.                 String cmd = substring(line, cmdidx, kmtidx - 1).trim();  
  114.                 if (cmd.indexOf("wmic.exe") >= 0)  
  115.                 {  
  116.                     continue;  
  117.                 }  
  118.                 String s1 = substring(line, kmtidx, rocidx - 1).trim();  
  119.                 String s2 = substring(line, umtidx, wocidx - 1).trim();  
  120.                 if (caption.equals("System Idle Process") || caption.equals("System"))  
  121.                 {  
  122.                     if (s1.length() > 0)  
  123.                         idletime += Long.valueOf(s1).longValue();  
  124.                     if (s2.length() > 0)  
  125.                         idletime += Long.valueOf(s2).longValue();  
  126.                     continue;  
  127.                 }  
  128.                 if (s1.length() > 0)  
  129.                     kneltime += Long.valueOf(s1).longValue();  
  130.                 if (s2.length() > 0)  
  131.                     usertime += Long.valueOf(s2).longValue();  
  132.             }  
  133.             retn[0] = idletime;  
  134.             retn[1] = kneltime + usertime;  
  135.             return retn;  
  136.         }  
  137.         catch (Exception ex)  
  138.         {  
  139.             ex.printStackTrace();  
  140.         }  
  141.         finally  
  142.         {  
  143.             try  
  144.             {  
  145.                 proc.getInputStream().close();  
  146.             }  
  147.             catch (Exception e)  
  148.             {  
  149.                 e.printStackTrace();  
  150.             }  
  151.         }  
  152.         return null;  
  153.     }  
  154.       
  155.     /** 
  156.     * 由于String.subString对汉字处理存在问题(把一个汉字视为一个字节),因此在 包含汉字的字符串时存在隐患,现调整如下: 
  157.     * @param src 要截取的字符串 
  158.     * @param start_idx 开始坐标(包括该坐标) 
  159.     * @param end_idx 截止坐标(包括该坐标) 
  160.     * @return 
  161.     */  
  162.     private static String substring(String src, int start_idx, int end_idx)  
  163.     {  
  164.         byte[] b = src.getBytes();  
  165.         String tgt = "";  
  166.         for (int i = start_idx; i <= end_idx; i++)  
  167.         {  
  168.             tgt += (char)b[i];  
  169.         }  
  170.         return tgt;  
  171.     }  

这篇关于java获取服务器CPU,内存,硬盘使用量的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/761515

相关文章

Python获取中国节假日数据记录入JSON文件

《Python获取中国节假日数据记录入JSON文件》项目系统内置的日历应用为了提升用户体验,特别设置了在调休日期显示“休”的UI图标功能,那么问题是这些调休数据从哪里来呢?我尝试一种更为智能的方法:P... 目录节假日数据获取存入jsON文件节假日数据读取封装完整代码项目系统内置的日历应用为了提升用户体验,

微信公众号脚本-获取热搜自动新建草稿并发布文章

《微信公众号脚本-获取热搜自动新建草稿并发布文章》本来想写一个自动化发布微信公众号的小绿书的脚本,但是微信公众号官网没有小绿书的接口,那就写一个获取热搜微信普通文章的脚本吧,:本文主要介绍微信公众... 目录介绍思路前期准备环境要求获取接口token获取热搜获取热搜数据下载热搜图片给图片加上标题文字上传图片

Java编译生成多个.class文件的原理和作用

《Java编译生成多个.class文件的原理和作用》作为一名经验丰富的开发者,在Java项目中执行编译后,可能会发现一个.java源文件有时会产生多个.class文件,从技术实现层面详细剖析这一现象... 目录一、内部类机制与.class文件生成成员内部类(常规内部类)局部内部类(方法内部类)匿名内部类二、

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Springboot @Autowired和@Resource的区别解析

《Springboot@Autowired和@Resource的区别解析》@Resource是JDK提供的注解,只是Spring在实现上提供了这个注解的功能支持,本文给大家介绍Springboot@... 目录【一】定义【1】@Autowired【2】@Resource【二】区别【1】包含的属性不同【2】@

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

Java中的String.valueOf()和toString()方法区别小结

《Java中的String.valueOf()和toString()方法区别小结》字符串操作是开发者日常编程任务中不可或缺的一部分,转换为字符串是一种常见需求,其中最常见的就是String.value... 目录String.valueOf()方法方法定义方法实现使用示例使用场景toString()方法方法