wiflish
Loving Life! Loving Coding!
posts - 98,comments - 98,trackbacks - 0
代码如下:
 1     public static Map getEnv() {
 2         Map map = new HashMap();
 3         String OS = System.getProperty("os.name").toLowerCase();
 4         
 5         Process p = null;
 6         
 7         /**
 8          * 以windows为例.
 9          */
10         if(OS.indexOf("windows"> -1) {
11             try {
12                 p = Runtime.getRuntime().exec("cmd /c set");
13                 BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
14                 
15                 String line;
16                 
17                 while((line = br.readLine()) != null) {
18                     String[] str = line.split("=");
19                     map.put(str[0], str[1]);
20                 }
21             } catch(IOException ioe) {
22                 ioe.printStackTrace();
23             }
24         }
25         return map;
26     }

上述代码将windows系统中的环境变量转换为java的Map,只要通过map.get(key)就能得到环境变量值,比如map.get("JAVA_HOME"),得到JAVA_HOME的值,即JAVA_HOME的系统路径。

值得注意的是在java中使用windows操作系统命令时要在命令前加 cmd /c,否则java会报错(),错误列表如下:
 1 java.io.IOException: CreateProcess: ${执行的操作命令表达式或者.bat文件} error=2
 2 at java.lang.Win32Process.create(Native Method)
 3 at java.lang.Win32Process.<init>(Win32Process.java:63)
 4 at java.lang.Runtime.execInternal(Native Method)
 5 at java.lang.Runtime.exec(Runtime.java:566)
 6 at java.lang.Runtime.exec(Runtime.java:428)
 7 at java.lang.Runtime.exec(Runtime.java:364)
 8 at java.lang.Runtime.exec(Runtime.java:326)
 9 at org.apache.jsp.ChangeDirBajaRCXX_jsp._jspService(ChangeDirBaja
10 p.java:185)

该错误的解释:
The error 2 comes from the CreateProcess() call, from MSDN (GetLastError():

2 - The system cannot find the file specified. - ERROR_FILE_NOT_FOUND

So, it means the path you passed cannot be found. Maybe you did not configure your Runtime 
class correctly.
put the batch file in the same directory as the 
class file and use (for a test):

posted on 2006-07-03 17:11 想飞的鱼 阅读(5863) 评论(2)  编辑  收藏 所属分类: java

FeedBack:
# re: 通过java获取系统环境变量
2010-03-02 16:45 | mm
但是,在java中调用 cmd /c set 命令和在命令提示符中的输出不一样啊,java调用时出现的少,新添加的自定义环境变量还是没有啊  回复  更多评论
  
# re: 通过java获取系统环境变量[未登录]
2010-08-20 17:22 | hello
System.getenv("")  回复  更多评论
  

只有注册用户登录后才能发表评论。


网站导航: