首页 > 代码库 > Java中获取系统相关信息——sigar
Java中获取系统相关信息——sigar
一、sigar简介
sigar中文名是系统信息收集和报表工具,是一个开源的工具,提供了跨平台的系统信息收集的API,可以和绝大多数操作系统和大多数版本打交道,可以收集的信息包括:
1.操作系统的信息,包括:dataModel、cpuEndian、name、version、arch、machine、description、patchLevel、vendor、vendorVersion、vendorName、vendorCodeName
2.CPU信息,包括:基本信息(vendor、model、mhz、cacheSize)和统计信息(user、sys、idle、nice、wait)
3.内存信息,物理内存和交换内存的总数、使用数、剩余数;RAM的大小
4.进程信息,包括每个进程的内存、CPU占用数、状态、参数、句柄等。
5.文件系统信息,包括名称、容量、剩余数、使用数、分区类型等
6.网络接口信息,包括基本信息和统计信息。
7.网络路由和链接表信息。
二、sigar的使用
//接口定义
public interface LoadInfo {
//获取cpu使用率
public String getCpuInfo();
// 获取系统内存使用量
public String getRamInfo();
//获取网络使用流量
public String getNetworkInfo();
//获取操作系统信息
public String getSystemInfo();
// 获取运行环境信息
public String getRunLoadInfo();
//获取虚拟机剩余内存
public String getVmRamInfo();
}
//以下是接口的实现
- //
CPU数量(单位:个) - int
cpuLength = sigar.getCpuInfoList().length; - print(cpuLength);
-
- //
CPU的总量(单位:HZ)及CPU的相关信息 - CpuInfo
infos[] = sigar.getCpuInfoList(); - for
(int i = 0; i < infos.length; i++) {// 不管是单块CPU还是多CPU都适用 -
CpuInfo info = infos[i]; -
print("mhz=" + info.getMhz());// CPU的总量MHz -
print("vendor=" + info.getVendor());// 获得CPU的卖主,如:Intel -
print("model=" + info.getModel());// 获得CPU的类别,如:Celeron -
print("cache size=" + info.getCacheSize());// 缓冲存储器数量 - }
-
-
- //
方式一,主要是针对一块CPU的情况 - CpuPerc
cpu; - try
{ -
cpu = sigar.getCpuPerc(); -
printCpuPerc(cpu); - }
catch (SigarException e) { -
e.printStackTrace(); - }
-
- //
方式二,不管是单块CPU还是多CPU都适用 - CpuPerc
cpuList[] = null; - try
{ -
cpuList = sigar.getCpuPercList(); - }
catch (SigarException e) { -
e.printStackTrace(); - }
- for
(int i = 0; i < cpuList.length; i++) { -
// printCpuPerc(cpuList[i]); - }
- //
物理内存信息 - Mem
mem = sigar.getMem(); - //
内存总量 - print("Total
= " + mem.getTotal() / 1024L / 1024 + "M av" ); - //
当前内存使用量 - print("Used
= " + mem.getUsed() / 1024L / 1024 + "M used" ); - //
当前内存剩余量 - print("Free
= " + mem.getFree() / 1024L / 1024 + "M free" ); -
- //
系统页面文件交换区信息 - Swap
swap = sigar.getSwap(); - //
交换区总量 - print("Total
= " + swap.getTotal() / 1024L + "K av" ); - //
当前交换区使用量 - print("Used
= " + swap.getUsed() / 1024L + "K used" ); - //
当前交换区剩余量 - print("Free
= " + swap.getFree() / 1024L + "K free" );
- "white-space:
normal; >background-color: #ffffff;" "white-space: normal; >//background-color: #ffffff;" 取到当前操作系统的名称 - String
hostname = ""; - try
{ -
hostname = InetAddress.getLocalHost().getHostName(); - }
catch (Exception exc) { -
try { -
hostname = sigar.getNetInfo().getHostName(); -
} catch (SigarException e) { -
hostname = "localhost.unknown"; -
} finally { -
sigar.close(); -
} - }
- print(hostname);
-
- //
取当前操作系统的信息 - OperatingSystem
OS = OperatingSystem.getInstance(); - //
操作系统内核类型如: 386、486、586等x86 - print("OS.getArch()
= " + OS.getArch()); - print("OS.getCpuEndian()
= " + OS.getCpuEndian());// - print("OS.getDataModel()
= " + OS.getDataModel());// - //
系统描述 - print("OS.getDescription()
= " + OS.getDescription()); - print("OS.getMachine()
= " + OS.getMachine());// - //
操作系统类型 - print("OS.getName()
= " + OS.getName()); - print("OS.getPatchLevel()
= " + OS.getPatchLevel());// - //
操作系统的卖主 - print("OS.getVendor()
= " + OS.getVendor()); - //
卖主名称 - System.out
-
.println("OS.getVendorCodeName() = " + OS.getVendorCodeName()); - //
操作系统名称 - print("OS.getVendorName()
= " + OS.getVendorName()); - //
操作系统卖主类型 - print("OS.getVendorVersion()
= " + OS.getVendorVersion()); - //
操作系统的版本号 - print("OS.getVersion()
= " + OS.getVersion()); -
- //
取当前系统进程表中的用户信息 - Who
who[] = sigar.getWhoList(); - if
(who != null && who.length > 0) { -
for (int i = 0; i < who.length; i++) { -
print("\n~~~~~~~~~" + String.valueOf(i) + "~~~~~~~~~"); -
Who _who = who[i]; -
print("getDevice() = " + _who.getDevice()); -
print("getHost() = " + _who.getHost()); -
print("getTime() = " + _who.getTime()); -
// 当前系统进程表中的用户名 -
print("getUser() = " + _who.getUser()); -
} - }
- "white-space:
normal; >//background-color: #ffffff;" 取硬盘已有的分区及其详细信息(通过sigar.getFileSystemList()来获得FileSystem列表对象,然后对其进行编历 - FileSystem
fslist[] = sigar.getFileSystemList(); - String
dir = System.getProperty("user.home");// 当前用户文件夹路径 - print(dir
+ " " + fslist.length); - for
(int i = 0; i < fslist.length; i++) { -
print("\n~~~~~~~~~~" + i + "~~~~~~~~~~"); - FileSystem
fs = fslist[i]; - //
分区的盘符名称 - print("fs.getDevName()
= " + fs.getDevName()); - //
分区的盘符名称 - print("fs.getDirName()
= " + fs.getDirName()); - print("fs.getFlags()
= " + fs.getFlags());// - //
文件系统类型,比如 FAT32、NTFS - print("fs.getSysTypeName()
= " + fs.getSysTypeName()); - //
文件系统类型名,比如本地硬盘、光驱、网络文件系统等 - print("fs.getTypeName()
= " + fs.getTypeName()); - //
文件系统类型 - print("fs.getType()
= " + fs.getType()); - FileSystemUsage
usage = null; - try
{ -
usage = sigar.getFileSystemUsage(fs.getDirName()); - }
catch (SigarException e) { -
if (fs.getType() == 2) -
throw e; -
continue; - }
- switch
(fs.getType()) { - case
0: // TYPE_UNKNOWN :未知 -
break; - case
1: // TYPE_NONE -
break; - case
2: // TYPE_LOCAL_DISK : 本地硬盘 -
// 文件系统总大小 -
print(" Total = " + usage.getTotal() + "KB"); -
// 文件系统剩余大小 -
print(" Free = " + usage.getFree() + "KB"); -
// 文件系统可用大小 -
print(" Avail = " + usage.getAvail() + "KB"); -
// 文件系统已经使用量 -
print(" Used = " + usage.getUsed() + "KB"); -
double usePercent = usage.getUsePercent() * 100D; -
// 文件系统资源的利用率 -
print(" Usage = " + usePercent + "%"); -
break; - case
3:// TYPE_NETWORK :网络 -
break; - case
4:// TYPE_RAM_DISK :闪存 -
break; - case
5:// TYPE_CDROM :光驱 -
break; - case
6:// TYPE_SWAP :页面交换 -
break; - }
- print("
DiskReads = " + usage.getDiskReads()); - print("
DiskWrites = " + usage.getDiskWrites()); - }
- "white-space:
normal; >background-color: #ffffff;" // 当前机器的正式域名 - try
{ -
print(InetAddress.getLocalHost().getCanonicalHostName()); - }
catch (UnknownHostException e) { -
try { -
print(sigar.getFQDN()); -
} catch (SigarException ex) { -
} finally { -
sigar.close(); -
} - }
-
- //
取到当前机器的IP地址 - String
address = null; - try
{ -
address = InetAddress.getLocalHost().getHostAddress(); -
// 没有出现异常而正常当取到的IP时,如果取到的不是网卡循回地址时就返回 -
// 否则再通过Sigar工具包中的方法来获取 -
print(address); -
if (!NetFlags.LOOPBACK_ADDRESS.equals(address)) { -
} - }
catch (UnknownHostException e) { -
// hostname not in DNS or /etc/hosts - }
- try
{ -
address = sigar.getNetInterfaceConfig().getAddress(); - }
catch (SigarException e) { -
address = NetFlags.LOOPBACK_ADDRESS; - }
finally { - }
- print(address);
-
- //
取到当前机器的MAC地址 - String[]
ifaces = sigar.getNetInterfaceList(); - String
hwaddr = null; - for
(int i = 0; i < ifaces.length; i++) { -
NetInterfaceConfig cfg = sigar.getNetInterfaceConfig(ifaces[i]); -
if (NetFlags.LOOPBACK_ADDRESS.equals(cfg.getAddress()) -
|| (cfg.getFlags() & NetFlags.IFF_LOOPBACK) != 0 -
|| NetFlags.NULL_HWADDR.equals(cfg.getHwaddr())) { -
continue; -
} -
hwaddr = cfg.getHwaddr(); -
print(hwaddr); -
// break; - }
- print(hwaddr
!= null ? hwaddr : null); -
- //
获取网络流量等信息 - String
ifNames[] = sigar.getNetInterfaceList(); - for
(int i = 0; i < ifNames.length; i++) { -
String name = ifNames[i]; -
NetInterfaceConfig ifconfig = sigar.getNetInterfaceConfig(name); -
print("\nname = " + name);// 网络设备名 -
print("Address = " + ifconfig.getAddress());// IP地址 -
print("Netmask = " + ifconfig.getNetmask());// 子网掩码 -
if ((ifconfig.getFlags() & 1L) <= 0L) { -
print("!IFF_UP...skipping getNetInterfaceStat" ); -
continue; -
} -
try { -
NetInterfaceStat ifstat = sigar.getNetInterfaceStat(name); -
print("RxPackets = " + ifstat.getRxPackets());// 接收的总包裹数 -
print("TxPackets = " + ifstat.getTxPackets());// 发送的总包裹数 -
print("RxBytes = " + ifstat.getRxBytes());// 接收到的总字节数 -
print("TxBytes = " + ifstat.getTxBytes());// 发送的总字节数 -
print("RxErrors = " + ifstat.getRxErrors());// 接收到的错误包数 -
print("TxErrors = " + ifstat.getTxErrors());// 发送数据包时的错误数 -
print("RxDropped = " + ifstat.getRxDropped());// 接收时丢弃的包数 -
print("TxDropped = " + ifstat.getTxDropped());// 发送时丢弃的包数 -
} catch (SigarNotImplementedExcep tion e) { -
} catch (SigarException e) { -
print(e.getMessage()); -
} - }
-
- //
一些其他的信息 - for
(int i = 0; i < ifaces.length; i++) { -
NetInterfaceConfig cfg = sigar.getNetInterfaceConfig(ifaces[i]); -
if (NetFlags.LOOPBACK_ADDRESS.equals(cfg.getAddress()) -
|| (cfg.getFlags() & NetFlags.IFF_LOOPBACK) != 0 -
|| NetFlags.NULL_HWADDR.equals(cfg.getHwaddr())) { -
continue; -
} -
print("cfg.getAddress() = " + cfg.getAddress());// IP地址 -
print("cfg.getBroadcast() = " + cfg.getBroadcast());// 网关广播地址 -
print("cfg.getHwaddr() = " + cfg.getHwaddr());// 网卡MAC地址 -
print("cfg.getNetmask() = " + cfg.getNetmask());// 子网掩码 -
System.out -
.println("cfg.getDescription() = " + cfg.getDescription());// 网卡描述信息 -
print("cfg.getType() = " + cfg.getType());// -
System.out -
.println("cfg.getDestination() = " + cfg.getDestination()); -
print("cfg.getFlags() = " + cfg.getFlags());// -
print("cfg.getMetric() = " + cfg.getMetric()); -
print("cfg.getMtu() = " + cfg.getMtu()); -
print("cfg.getName() = " + cfg.getName()); - }
三、sigar的包及相关文件
该类需要引入jar包,进入下载
另外为了防止程序运行时的错误,还需要相关文件,进入下载
四、在Windows中的常见问题
使用该类常常会遇到问题:
java.lang.UnsatisfiedLinkError: org.hyperic.sigar.SysInfo.gather(Lorg/hyperic/sigar/Sigar;)V
org.hyperic.sigar.SysInfo.gather(Native Method)
org.hyperic.sigar.OperatingSystem.getInstance(OperatingSystem.java:90)
com.shuhaiserver.page.servlet.LoginServlet.doLogin(LoginServlet.java:146)
com.shuhaiserver.page.servlet.LoginServlet.doPost(LoginServlet.java:54)
javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
com.shuhaiserver.page.servlet.MyFilter.doFilter(MyFilter.java:82)
此时,需要将libsigar-amd64-linux.so、libsigar-x86-linux.so、sigar-amd64-winnt.dll、sigar-x86-winnt.dll、sigar-x86-winnt.lib文件放在项目的lib文件夹下
五、在Linux中的常见问题
如果在Linux中还会包如上问题,可以尝试将相关文件放在项目的src文件夹下
附:代码转自http://blog.sina.com.cn/s/blog_5017ea6c0101byrr.html
Java中获取系统相关信息——sigar