(转)用Java获得当前性能信息

(转)用Java获得当前性能信息
http://www.blogjava.net/amigoxie/archive/2008/04/30/197564.html
在Java中,可以获得总的物理内存、剩余的物理内存、已使用的物理内存等信息,本例讲解如何取得这些信息,并且获得在Windows下的内存使用率。
     首先编写一个MonitorInfoBean类,用来装载监控的一些信息,包括物理内存、剩余的物理内存、已使用的物理内存、内存使用率等字段,该类的代码如下:
package com.amigo.performance;

/** *//**
 * 监视信息的JavaBean类.
 * 
@author <a href="mailto:xiexingxing1121@126.com">AmigoXie</a>
 * 
@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.amigo.performance;

/** *//**
 * 获取系统信息的业务逻辑类接口.
 * 
@author <a href="mailto:xiexingxing1121@126.com">AmigoXie</a>
 * 
@version 1.0 
 * Creation date: 2008-3-11 - 上午10:06:06
 
*/
public interface IMonitorService {
    
/** *//**
     * 获得当前的监控对象.
     * 
@return 返回构造好的监控对象
     * 
@throws Exception
     * 
@author <a href="mailto:xiexingxing1121@126.com">AmigoXie</a>
     * Creation date: 2008-4-25 - 上午10:45:08
     
*/

    
public MonitorInfoBean getMonitorInfoBean() throws Exception;

}
     该类的实现类MonitorServiceImpl如下所示:
package com.amigo.performance;

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

import sun.management.ManagementFactory;

import com.sun.management.OperatingSystemMXBean;

/** *//**
 * 获取系统信息的业务逻辑实现类.
 * 
@author <a href="mailto:xiexingxing1121@126.com">AmigoXie</a>
 * 
@version 1.0 Creation date: 2008-3-11 - 上午10:06:06
 
*/

public class MonitorServiceImpl implements IMonitorService {
    
    
private static final int CPUTIME = 30;

    
private static final int PERCENT = 100;

    
private static final int FAULTLENGTH = 10;

    
/** *//**
     * 获得当前的监控对象.
     * 
@return 返回构造好的监控对象
     * 
@throws Exception
     * 
@author <a href="mailto:xiexingxing1121@126.com">AmigoXie</a>
     * 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 <a href="mailto:xiexingxing1121@126.com">AmigoXie</a>
     * 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 <a href="mailto:xiexingxing1121@126.com">AmigoXie</a>
     * 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 <a href="mailto:xiexingxing1121@126.com">AmigoXie</a>
     * 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.amigo.performance;

/** *//**
 * byte操作类.
 * 
@author <a href="mailto:xiexingxing1121@126.com">AmigoXie</a>
 * 
@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;
    }

}

        运行下MonitorBeanImpl类,读者将会看到当前的内存、cpu利用率等信息。
posted on 2008-05-02 07:03 jackyrong的世界 阅读(...) 评论(...) 编辑 收藏

转载于:https://www.cnblogs.com/jackyrong/archive/2008/05/02/1179180.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/276905.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

docker wsl2启动不了_Docker学习笔记

在笔记本上主要还是想以轻量、方便为主&#xff0c;所以采用的是在WSL2中使用docker的这么一个方案。WSL2我笔记本原来是预装的是WIN10家庭版&#xff0c;需要先升级为专业版&#xff0c;并加入windows预览体验计划。更新完之后&#xff0c;安装WSL&#xff0c;我选择的是Ubunt…

网易马进:DDB从分布式数据库到结构化数据中心的架构变迁

导语&#xff1a; 本文根据马进老师在2018年5月10日【第九届中国数据库技术大会(DTCC)】现场演讲内容整理而成。马进 网易 DDB项目负责人来自网易杭研大数据平台组&#xff0c;入职以来先后参与了分布式数据库DDB&#xff0c;缓存NKV&#xff0c;网易数据运河NDC等项目&#xf…

element label动态赋值_浅析 vuerouter 源码和动态路由权限分配

背景上月立过一个 flag&#xff0c;看完 vue-router 的源码&#xff0c;可到后面逐渐发现 vue-router 的源码并不是像很多总结的文章那么容易理解&#xff0c;阅读过你就会发现里面的很多地方都会有多层的函数调用关系&#xff0c;还有大量的 this 指向问题&#xff0c;而且会有…

世界领先的界面设计公司:The Skins Factory

该公司的网站&#xff1a; http://www.theskinsfactory.com/skinsfactory/ 该公司诞生于2000年&#xff0c;由一群狂热的界面爱好者&#xff0c;带着对GUI的热情和大胆的洞察力创立。很快&#xff0c;皮肤工厂便成长为世界领先的、真正的、革命性界面解决方案提供商。 更多的精…

HDU 1253 胜利大逃亡 题解

胜利大逃亡 Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 44540 Accepted Submission(s): 15483 Problem DescriptionIgnatius被魔王抓走了,有一天魔王出差去了,这可是Ignatius逃亡的好机会.魔王住在一个城堡…

lstm需要优化的参数_使用PyTorch手写代码从头构建LSTM,更深入的理解其工作原理...

这是一个造轮子的过程&#xff0c;但是从头构建LSTM能够使我们对体系结构进行更加了解&#xff0c;并将我们的研究带入下一个层次。LSTM单元是递归神经网络深度学习研究领域中最有趣的结构之一&#xff1a;它不仅使模型能够从长序列中学习&#xff0c;而且还为长、短期记忆创建…

有哪些漂亮的中国风 LOGO 设计?

提到中国风的logo&#xff0c;我觉得首先登场的应该是北京故宫博物院的logo&#xff0c;铛&#xff01;故宫博物院的logo&#xff0c;从颜色&#xff0c;到外形&#xff0c;到元素&#xff0c;无一例外&#xff0c;充满了中国风的味道&#xff0c;可谓是中国风中的典型。同一风…

python3常用模块_Python3 常用模块

一、time与datetime模块 在Python中&#xff0c;通常有这几种方式来表示时间&#xff1a; 时间戳(timestamp)&#xff1a;通常来说&#xff0c;时间戳表示的是从1970年1月1日00:00:00开始按秒计算的偏移量。我们运行“type(time.time())”&#xff0c;返回的是float类型。 格式…

地方政府不愿房价下跌 救市或化解房地产调控

地方政府不愿房价下跌 "救市"或化解房地产调控 2008年05月09日 07:29:38  来源&#xff1a;上海证券报 漫画 刘道伟 由于房地产业与地方政府利益攸关&#xff0c;地方政府最不愿意看到房价下跌。中央房地产调控政策刚刚导致部分城市的房价步入调整&#xff0c;一些…

App移动端性能工具调研

使用GT的差异化场景平台描述release版本development版本Android在Android平台上&#xff0c;如果希望使用GT的高级功能&#xff0c;如“插桩”等&#xff0c;就必须将GT的SDK嵌入到被调测的应用的工程里&#xff0c;再配合安装好的GT使用。支持AndroidiOS在iOS平台上&#xff0…

UITabBar Contoller

。UITabBar中的UIViewController获得控制权&#xff1a;在TabBar文件中添加&#xff1a;IBOutlet UITabBar *myTabBar; //在xib中连接tabBar&#xff1b;(void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:      (UIViewControlle…

python3.5安装pip_win10上python3.5.2第三方库安装(运用pip)

1 首先在python官网下载并安装python。我这儿用的是python3.5.2&#xff0c;其自带了pip。如果你选择的版本没有自带pip&#xff0c;那么请查找其他的安装教程。 2 python安装好以后&#xff0c;我在其自带的命令提示符窗口中输入了pip&#xff0c;结果尴尬了&#xff0c;提示我…

语法上的小trick

语法上的小trick 构造函数 虽然不写构造函数也是可以的&#xff0c;但是可能会开翻车&#xff0c;所以还是写上吧。&#xff1a; 提供三种写法&#xff1a; ​ 使用的时候只用&#xff1a; 注意&#xff0c;这里的A[i]gg(3,3,3)的“gg”不能打括号&#xff0c;否则就是强制转换…

Ubuntu18.04如何让桌面软件默认root权限运行?

什么是gksu? 什么是gksu:Linxu中的gksu是系统中的su/sudo工具,如果安装了gksu,在终端中键入gksu会弹出一个对话框. 安装gksu: 在Ubuntu之前的版本中是继承gksu工具的,但是在Ubutu18.04中并没有集成, 在Elementary OS中连gksu的APT源都没有. Ubuntu18.04 安装和使用gksu: seven…

win10诊断启动后联网_小技巧:win10网络共享文件夹出现错误无法访问如何解决?...

win10系统共享文件夹时在资源管理器中的网络里能够看到所共享的文件夹&#xff0c;但在打开文件夹时却出现 Windows无法访问 Desktop-r8ceh55新建文件夹 请检查名称的拼写。否则&#xff0c;网络可能有问题。要尝试识别并解决网络问题&#xff0c;请单击“诊断”的错误提示&…

两段关于统计日期的sql语句

统计月份&#xff1a;selectleft(convert(char(10),[Article_TimeDate],102),7) as月份, count(*) as数量from[hdsource].[dbo].[article]groupbyleft(convert(char(10),[Article_TimeDate],102),7)orderby1统计年份&#xff1a; selectleft(convert(char(10),[Article_TimeDat…

sklearn 安装_sklearn-classification_report

原型sklearn.metrics.classification_report(y_true, y_pred, labelsNone, target_namesNone, sample_weightNone, digits2)参数y_true&#xff1a;1维数组或标签指示数组/离散矩阵&#xff0c;样本实际类别值列表y_pred&#xff1a;1维数组或标签指示数组/离散矩阵&#xff0c…

Python标准库之csv(1)

1.Python处理csv文件之csv.writer() import csvdef csv_write(path,data):with open(path,w,encodingutf-8,newline) as f:writer csv.writer(f,dialectexcel)for row in data:writer.writerow(row)return True 调用上面的函数 data [[Name,Height],[Keys,176cm],[HongPing,1…

我用代码来给你们分析一个赚钱的技巧

2019独角兽企业重金招聘Python工程师标准>>> 赚钱是个俗气的话题&#xff0c;但又是人人都绕不开的事情。我今天来“科学”地触碰下这个话题。 谈赚钱&#xff0c;就会谈到理财、投资&#xff0c;谈到炒股。有这样一个笑话&#xff1a; 问&#xff1a;如何成为百万富…

idea中自动deployment的步骤

转载于:https://www.cnblogs.com/littlehb/p/11322666.html