- 浏览: 1149629 次
- 性别:
- 来自: 火星郊区
博客专栏
-
OSGi
浏览量:0
文章分类
- 全部博客 (695)
- 项目管理 (48)
- OSGi (122)
- java (79)
- Vaadin (5)
- RAP (47)
- mysql (40)
- Maven (22)
- SVN (8)
- 孔雀鱼 (10)
- hibernate (9)
- spring (10)
- css (3)
- 年审 (6)
- ant (1)
- jdbc (3)
- FusionCharts (2)
- struts (4)
- 决策分析 (2)
- 生活 (10)
- 架构设计 (5)
- 破解 (2)
- 狼文化 (4)
- JVM (14)
- J2EE (1)
- 应用服务器 (1)
- 我的链接 (5)
- 数学 (2)
- 报表 (1)
- 百科 (6)
- Flex (7)
- log4j (2)
- PHP (1)
- 系统 (2)
- Web前端 (7)
- linux (6)
- Office (1)
- 安全管理 (5)
- python (2)
- dom4j (1)
- 工作流 (3)
- 养生保健 (4)
- Eclipse (8)
- 监控开发 (1)
- 设计 (3)
- CAS (1)
- ZK (41)
- BluePrint (3)
- 工具 (1)
- SWT (7)
- google (2)
- NIO (1)
- 企业文化 (2)
- Windoes (0)
- RCP (7)
- JavaScript (10)
- UML (1)
- 产品经理 (2)
- Velocity (10)
- C (1)
- 单元测试 (1)
- 设计模式 (2)
- 系统分析师 (2)
- 架构 (4)
- 面试 (2)
- 代码走查 (1)
- MongoDB (1)
- 企业流程优化 (1)
- 模式 (1)
- EJB (1)
- Jetty (1)
- Git (13)
- IPV6 (1)
- JQuery (8)
- SSH (1)
- mybatis (10)
- SiteMesh (2)
- JSTL (1)
- veloctiy (1)
- Spring MVC (1)
- struts2 (3)
- Servlet (1)
- 权限管理 (1)
- Java Mina (1)
- java 系统信息 (6)
- OSGi 基础 (3)
- html (1)
- spring--security (6)
- HTML5 (1)
- java爬虫搜索 (1)
- mvc (3)
最新评论
-
Tom.X:
http://osgia.com/
将web容器置于OSGi框架下进行web应用的开发 -
chenyuguxing:
你好, 为什么我的bundle export到felix工程中 ...
在Apache Felix中运行bundle -
string2020:
<niceManifest>true</ni ...
Bundle Plugin for Maven -
jsonmong:
OSGI,是未来的主流,目前已相当成熟。应用OSGI比较好的, ...
基于OSGi的声明式服务 -
zyhui98:
貌似是翻译过来的,有很少人在linux上做开发吧
如何成为“10倍效率”开发者
最近做个项目,就是要取得cpu占有率等等的系统信息,一开始以为要用动态链接库了,但后来发现可以像下面这样做,不去调用jni,这样省去了很多看新技术的时间o(∩_∩)o...
在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;
- }
- }
运行下MonitorBeanImpl类,读者将会看到当前的内存、cpu利用率等信息。
发表评论
-
得到局域网所有主机名
2012-10-19 10:12 742import java.net.InetAddress; i ... -
SNMP常用OID
2012-10-19 10:12 1059Linux SNMP OID’s for CPU,Memory ... -
公司要求实时监控服务器,写个Web的监控系统
2012-10-19 10:15 1181转自:http://kakaluyi.iteye.com/bl ... -
Java获取操作系统信息
2012-10-26 08:54 1057Java代码 import j ... -
Java获取系统信息(cpu,内存,硬盘,进程等)的相关方法
2012-10-16 10:48 5272import java.io.InputStreamReade ...
相关推荐
在《Java_JNI_获得系统进程信息实例.doc》中,我们探索了一个利用Java Native Interface (JNI)来获取操作系统进程信息的示例项目。该项目由三个主要部分组成:`systemProcess.java`,`dataProcess.java`以及`process...
JNI最常用于实现Java环境下的底层功能访问,特别是那些需要高性能或者依赖特定操作系统或硬件的功能。通过JNI,开发者可以编写Java应用程序来调用本地方法,这些本地方法通常是用C或C++编写的,并被编译成动态链接库...
在 Java 中,JNI 可以帮助我们获取操作系统级别的内存信息,例如总内存、已用内存和空闲内存。在 Windows 上,可以使用 `GlobalMemoryStatusEx` 函数;在 Unix 系统中,可以读取 `/proc/meminfo` 文件。 4. **网卡...
6. 异常处理:在JNI中,使用`ExceptionOccurred`检查是否发生了异常,如果有,可以用`ExceptionDescribe`打印异常信息,`ExceptionClear`清除当前的异常。 7. 类和方法ID:在C/C++中,你需要先获取类的`jclass`,...
为了实现这一目标,我们可以利用JNI(Java Native Interface),它提供了一种方式让Java代码能够调用C/C++编写的本地方法,从而获取系统底层的信息。本文将详细讲解如何通过JNI在Java中获取CPU和内存的使用率。 ...
### Java的JNI本地调用详解 #### 一、简述JNI技术 ...虽然使用JNI可以带来诸多好处,但也需注意它可能导致的问题,比如增加代码复杂度、降低程序的可移植性等。因此,在实际开发中应根据需求权衡是否使用JNI。
JNI提供了一种方式,让Java代码可以调用C/C++编写的本地方法,同时也允许C/C++代码调用Java对象的方法。通过定义`native`关键字的函数,Java类可以在运行时通过`System.loadLibrary()`加载对应的本地库,从而实现跨...
在Android开发中,JNI常用于提升性能、调用系统库或者实现特定功能,如与C/C++库交互。本项目重点在于如何在JNI中利用多线程调用Java代码,这在处理大量数据或者并发任务时非常有用。 首先,理解JNI的基本概念至关...
通过JNI,开发者可以在Java应用程序中利用已有的C++库,提升性能或实现Java无法直接处理的功能。 【配置JNI开发环境】 1. **安装JDK**:首先确保安装了Java Development Kit(JDK),推荐使用1.5及以上版本。安装...
本地代码可以通过`ExceptionOccurred`检查是否有Java异常发生,使用`ExceptionDescribe`打印异常信息,`ExceptionClear`清除当前的异常。 8. **线程支持** JNI支持多线程编程,每个Java线程都有一个对应的本地线程...
在Java编程中,获取系统资源的信息是常见...总的来说,Java虽然不能直接提供获取所有系统资源的通用方法,但通过标准库和其他辅助工具,我们可以获取到CPU、内存和硬盘等关键信息,为系统监控和性能优化提供数据支持。
总结来说,获取当前系统所有进程可以通过Java直接调用操作系统命令或者使用JNI调用本地代码实现。前者简单且跨平台,但可能受到操作系统命令行工具的限制;后者更灵活,可以直接操作底层系统,但需要编写和管理本地...
这些信息可以通过Runtime类的exec方法执行,并通过BufferedReader读取输出流。 在Mac OS环境中,Java可以利用OS X提供的命令行工具,如`sysctl`和`system_profiler`。`sysctl`命令可以获取内核和硬件参数,而`...
它不仅能够帮助开发者整合现有的C/C++代码库,还能让Java应用与本地系统更好地交互,从而获得更好的性能或者访问特定硬件资源的能力。 #### 二、JNI的应用场景 JNI的应用场景非常广泛,主要可以分为以下几个方面:...
在这个例子中,`JNI_OnLoad()`函数首先获取当前的JNIEnv指针,并检查是否支持所需的JNI版本(这里假设是1.4版本)。然后,它会注册多个Java native方法,确保这些方法能够在Java层被正确调用。如果注册过程中出现...
"Java 读取任务管理器信息" 本文主要讨论了如何在 Java 中读取任务管理器信息,包括物理内存、剩余物理内存、已使用...java 中读取任务管理器信息可以帮助开发者更好地了解系统的当前状态,提高系统的性能和可维护性。
JNI(Java Native Interface)是Java平台的标准组成部分,它允许Java代码和...通过JNI,我们可以轻松地集成现有C/C++库,实现高性能计算,或者访问特定操作系统的功能。理解并熟练使用JNI是任何Java开发者的宝贵技能。
这些方法返回的信息可以帮助我们了解设备当前连接的运营商和网络环境。 接下来,关于JNI,它是Java平台用来与C/C++原生代码交互的一种机制。在某些情况下,为了提高性能或者利用硬件特性,开发者可能需要编写原生...