六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 30|回复: 0

java通过JVM获取操作系统信息

[复制链接]

升级  86%

9

主题

9

主题

9

主题

童生

Rank: 1

积分
43
 楼主| 发表于 2013-1-15 02:20:46 | 显示全部楼层 |阅读模式
import java.util.Enumeration;
import java.util.Hashtable;
import java.util.Properties;

public class TestJVMGetSystemInfo
{
// 存放JVM获得的系统属性
static private Properties _property;
// Main function
public static void main(String[] args){
getSystemProperty();
Hashtable<String,String> hashKey;
hashKey=new Hashtable<String,String>();
//将系统信息的要害字和标题放到hashtable
hashKey.put("java.home","Java安装目录");
hashKey.put("java.class.path","装载类的路径");
hashKey.put("java.specification.version", "Java API 规范的版本 ");
hashKey.put("java.specification.vendor","Java API 规范的厂商 ");
hashKey.put("java.specification.name","Java API 规范的名称 ");
hashKey.put("java.version", "Java API 实现的版本 ");
hashKey.put("java.vendor","Java API 实现的厂商 ");
hashKey.put("java.vendor.url","Java API 规范厂商的URL");
hashKey.put("java.vm.specification.version","Java虚拟机规范的版本");
hashKey.put("java.vm.specification.vendor", "Java虚拟机规范的厂商");
hashKey.put("java.vm.specification.name", "Java虚拟机规范的名称");
hashKey.put("java.vm.version","Java虚拟机实现的版本");
hashKey.put("java.vm.vendor", "Java虚拟机实现的厂商");
hashKey.put("java.vm.name", "Java虚拟机实现的名称");
hashKey.put("java.class.version", "Java类文件格式的版本");
hashKey.put("os.name","主机操作系统的名称");
hashKey.put("os.arch","主机操作系统的体系结构");
hashKey.put("os.version", "主机操作系统的版本");
hashKey.put("file.separator", "平台目录的分隔符");
hashKey.put("path.separator", "平台路径的分隔符");
hashKey.put("line.separator", "平台文本行的分隔符");
hashKey.put("user.name","当前用户的帐户名称");
hashKey.put("user.home","当前用户的根目录");
hashKey.put("user.dir", "当前工作目录");


Enumeration<String> enum1;
String propertyKey;
enum1=hashKey.keys();
while(enum1.hasMoreElements()){
propertyKey=(String)enum1.nextElement();
System.out.println((String)hashKey.get(propertyKey)+":"+_property.getProperty(propertyKey));
}
}

/**
* 获得系统属性列表
*
* @return Properties
*/
static public Properties getSystemProperty()
{
_property = System.getProperties();
return _property;
}
}
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表