java读取操作系统环境变量

王朝java/jsp·作者佚名  2008-05-31
窄屏简体版  字體: |||超大  

Java读取操作系统环境变量

/**

文件名:SysProb.java

描述: 取得当前系统变量的程序。 java中的System.getProperty只是针对JVM来的,假如要取得系统环境变量,还要用到系统相关的函数

作者: 慈勤强

Email :cQQ1978@Gmail.com

**/

import java.util.*;

import java.io.*;

class SysProb

{

//返回当前系统变量的函数,结果放在一个Properties里边,这里只针对win2k以上的,其它系统可以自己改进

public Properties getEnv() throws Exception

{

Properties prop=new Properties();

String OS = System.getProperty("os.name").toLowerCase();

Process p=null;

if(OS.indexOf("windows")>-1)

{

p=Runtime.getRuntime().exec("cmd /c set"); //其它的操作系统可以自行处理, 我这里是win2k

}

BufferedReader br=new BufferedReader(new InputStreamReader(p.getInputStream()));

String line;

while((line=br.readLine())!=null)

{

int i=line.indexOf("=");

if(i>-1)

{

String key=line.substring(0,i);

String value=line.substring(i+1);

prop.setProperty(key,value);

}

}

return prop;

}

//具体用法

public static void main(String[] args)

{

try

{

SysProb sp=new SysProb();

Properties p=sp.getEnv();

System.out.println(p.getProperty("Path")); //注重大小写,假如写成path就不对了

}

catch(Exception e)

{

System.out.println(e);

}

}

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航