Maison > Java > javaDidacticiel > le corps du texte

java读取操作系统环境变量

高洛峰
Libérer: 2016-12-17 13:14:09
original
1419 Les gens l'ont consulté

java读取操作系统环境变量

      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); 
      }
      } 
      }
Copier après la connexion



更多java读取操作系统环境变量相关文章请关注PHP中文网!

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!