Java

本类阅读TOP10

·使用MyEclipse开发Struts框架的Hello World!(录像1)
·hibernate配置笔记
·AOP编程入门--Java篇
·linux下Tomcat 5.0.20 与 Apache 2 安装/集成/配置
·在win2003下整合了整合Tomcat5.5+ apache_2.0.53+ mod_jk_2.0.47.dll
·构建Linux下IDE环境--Eclipse篇
·Jsp 连接 mySQL、Oracle 数据库备忘(Windows平台)
·ASP、JSP、PHP 三种技术比较
·Tomcat5.5.9的安装配置
·AWT GUI 设计笔记(二)

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
java读取操作系统环境变量

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

java读取操作系统环境变量


/**
文件名:SysProb.java
描述: 取得当前系统变量的程序。 java中的System.getProperty只是针对JVM来的,如果要取得系统环境变量,还要用到系统相关的函数
作者: 慈勤强
Email :
[email protected]
**/

 

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);
  }

 }
}




相关文章

相关软件