java中获取系统属性以及环境变量

java中获取系统属性以及环境变量

System.getEnv()和System.getProperties()的差别

从概念上讲,系统属性环境变量 都是名称与值之间的映射。两种机制都能用来将用户定义的信息传递给 Java 进程。环境变量产生很多其它的全局效应,由于它们不仅对Java 子进程可见,并且对于定义它们的进程的全部子进程都是可见的。在不同的操作系统上,它们的语义有细微的区别,比方,不区分大写和小写。由于这些原因,环境变量更可能有意料不到的副作用。最好在可能的地方使用系统属性。环境变量应该在须要全局效应的时候使用,或者在外部系统接口要求使用环境变量时使用(比方 PATH)。

代码例如以下:

public static void main(String [] args)

?????? {

????????????? Map
m = System.getenv();

????????????? for
( Iterator it = m.keySet().iterator(); it.hasNext(); )

????????????? {

???????????????????? String
key = (String ) it.next();

???????????????????? String
value = (String )? m.get(key);

???????????????????? System.out.println(key
+":" +value);

????????????? }

????????????? System.out.println(
"--------------------------------------" );

????????????? Properties
p = System.getProperties();

?????????????

????????????? for
( Iterator it = p.keySet().iterator(); it.hasNext(); )

????????????? {

???????????????????? String
key = (String ) it.next();

???????????????????? String
value = (String )? p.get(key);

???????????????????? System.out.println(key
+":" +value);

????????????? }

?????? }

?

输入例如以下:

ANT_HOME:D:/program/devel/ant

PROCESSOR_ARCHITECTURE:x86

LOGONSERVER://RJ-WEIJIANJUN

HOMEDRIVE:C:

CATALINA_HOME:D:/program/server/Tomcat5.5

DXSDK_DIR:d:/Program
Files/Microsoft DirectX SDK (August 2008)/

VS80COMNTOOLS:C:/Program
Files/Microsoft Visual Studio 8/Common7/Tools/

SESSIONNAME:Console

HOMEPATH:/Documents and
Settings/Administrator

TMP:C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp

windir:C:/WINDOWS

PROCESSOR_IDENTIFIER:x86 Family
6 Model 15 Stepping 13, GenuineIntel

VS90COMNTOOLS:e:/Program
Files/Microsoft Visual Studio 9.0/Common7/Tools/

SystemDrive:C:

USERPROFILE:C:/Documents and
Settings/Administrator

PATHEXT:.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH

CommonProgramFiles:C:/Program
Files/Common Files

NUMBER_OF_PROCESSORS:2

ComSpec:C:/WINDOWS/system32/cmd.exe

COMPUTERNAME:RJ-WEIJIANJUN

OS:Windows_NT

USERNAME:Administrator

CLIENTNAME:Console

TEMP:C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp

USERDOMAIN:RJ-WEIJIANJUN

ALLUSERSPROFILE:C:/Documents
and Settings/All Users

lib:C:/Program Files/SQLXML
4.0/bin/

PROCESSOR_LEVEL:6

SystemRoot:C:/WINDOWS

ClusterLog:C:/WINDOWS/Cluster/cluster.log

APPDATA:C:/Documents and
Settings/Administrator/Application Data

Path:C:/WINDOWS/system32;C:/WINDOWS;C:/WINDOWS/System32/Wbem;C:/Program
Files/Microsoft SQL Server/80/Tools/Binn/;C:/Program Files/Microsoft SQL
Server/90/DTS/Binn/;C:/Program Files/Microsoft SQL
Server/90/Tools/binn/;C:/Program Files/Microsoft SQL
Server/90/Tools/Binn/VSShell/Common7/IDE/;C:/Program Files/Microsoft Visual
Studio 8/Common7/IDE/PrivateAssemblies/;D:/program/devel/flex_sdk2/bin;D:/program/devel/ant/bin;C:/Program
Files/Java/jdk1.6.0_07/bin;%JONAS_ROOT%/bin/nt;d:/program/devel/ant/bin

JAVA_HOME:C:/Program
Files/Java/jdk1.6.0_07

FP_NO_HOST_CHECK:NO

PROCESSOR_REVISION:0f0d

ProgramFiles:C:/Program Files

下面是property的输出:

--------------------------------------

java.runtime.name:Java(TM) 2
Runtime Environment, Standard Edition

sun.boot.library.path:D:/Program
Files/MyEclipse 6.5/jre/bin

java.vm.version:1.5.0_11-b03

java.vm.vendor:Sun Microsystems
Inc.

java.vendor.url:http://java.sun.com/

path.separator:;

java.vm.name:Java HotSpot(TM)
Client VM

file.encoding.pkg:sun.io

sun.java.launcher:SUN_STANDARD

user.country:CN

sun.os.patch.level:Service Pack
2

java.vm.specification.name:Java
Virtual Machine Specification

user.dir:D:/dev/eclipse/mye65/workspace/jmx

java.runtime.version:1.5.0_11-b03

java.awt.graphicsenv:sun.awt.Win32GraphicsEnvironment

java.endorsed.dirs:D:/Program
Files/MyEclipse 6.5/jre/lib/endorsed

os.arch:x86

java.io.tmpdir:C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/

line.separator:

?

java.vm.specification.vendor:Sun
Microsystems Inc.

user.variant:

os.name:Windows 2003

sun.jnu.encoding:GBK

java.library.path:D:/Program
Files/MyEclipse
6.5/jre/bin;.;C:/WINDOWS/system32;C:/WINDOWS;C:/WINDOWS/system32;C:/WINDOWS;C:/WINDOWS/System32/Wbem;C:/Program
Files/Microsoft SQL Server/80/Tools/Binn/;C:/Program Files/Microsoft SQL
Server/90/DTS/Binn/;C:/Program Files/Microsoft SQL
Server/90/Tools/binn/;C:/Program Files/Microsoft SQL
Server/90/Tools/Binn/VSShell/Common7/IDE/;C:/Program Files/Microsoft Visual
Studio
8/Common7/IDE/PrivateAssemblies/;D:/program/devel/flex_sdk2/bin;D:/program/devel/ant/bin;C:/Program
Files/Java/jdk1.6.0_07/bin;%JONAS_ROOT%/bin/nt;d:/program/devel/ant/bin

java.specification.name:Java
Platform API Specification

java.class.version:49.0

sun.management.compiler:HotSpot
Client Compiler

os.version:5.2

user.home:C:/Documents and
Settings/Administrator

user.timezone:Asia/Shanghai

java.awt.printerjob:sun.awt.windows.WPrinterJob

file.encoding:GBK

java.specification.version:1.5

java.class.path:D:/dev/eclipse/mye65/workspace/jmx/bin;D:/program/lib/jmx/jmxtools.jar;D:/program/lib/log/commons-logging-1.1.1.jar;D:/program/lib/log/log4j-1.2.15.jar;D:/program/lib/registry/registry.jar

user.name:Administrator

java.vm.specification.version:1.0

java.home:D:/Program
Files/MyEclipse 6.5/jre

sun.arch.data.model:32

user.language:zh

java.specification.vendor:Sun
Microsystems Inc.

awt.toolkit:sun.awt.windows.WToolkit

java.vm.info:mixed mode

java.version:1.5.0_11

java.ext.dirs:D:/Program
Files/MyEclipse 6.5/jre/lib/ext

sun.boot.class.path:D:/Program
Files/MyEclipse 6.5/jre/lib/rt.jar;D:/Program Files/MyEclipse
6.5/jre/lib/i18n.jar;D:/Program Files/MyEclipse
6.5/jre/lib/sunrsasign.jar;D:/Program Files/MyEclipse 6.5/jre/lib/jsse.jar;D:/Program
Files/MyEclipse 6.5/jre/lib/jce.jar;D:/Program Files/MyEclipse
6.5/jre/lib/charsets.jar;D:/Program Files/MyEclipse 6.5/jre/classes

java.vendor:Sun Microsystems
Inc.

file.separator:/

java.vendor.url.bug:http://java.sun.com/cgi-bin/bugreport.cgi

sun.io.unicode.encoding:UnicodeLittle

sun.cpu.endian:little

sun.desktop:windows

sun.cpu.isalist:pentium_pro+mmx
pentium_pro pentium+mmx pentium i486 i386 i86

个人觉得比較重要的系统属性:

java.home:Java 安装文件夹 (比方D:/JavaStudio/jdk15/jre)

java.class.path:Java 类路径

java.vm.version:Java虚拟机版本(比方:1.5.0-b64)

java.version:Java版本(比方:1.5.0)

os.name:操作系统的名称(比方:Windows XP)

os.version:操作系统的版本号(比方:Windows XP 的版本号为5.1)

user.home:用户的主文件夹 (比方:C:/Documents and Settings/zhangsan)

user.name:当前username

user.country:当前用户所属国家

user.dir:用户的当前工作文件夹

比較重要的环境变量(Windows操作系统):

%COMPUTERNAME%???? 返回计算机的名称。

%COMSPEC%???? 返回命令行解释器可运行程序的准确路径。

%WINDIR%??? 返回操作系统文件夹的位置。

%OS%???? 返回操作系统的名称。Windows 2000 将操作系统显示为 Windows_NT。

%PATH%??? 指定可运行文件的搜索路径。

%USERDOMAIN%??? 返回包括用户帐户的域的名称。

%USERNAME%??? 返回当前登录的用户的名称。

以下是一篇在jdk1.4中得到环境变量的方法:

Access user
defined environment variable inside the java program with jdk1.4

In JDK 1.4
System.getenv() is deprecated. (In JDK 1.5 it is un-deprected again.) The
getProperty method is now the correspoding method to get the variables. For
example: System.getProperty("java.class.path",""). But it
doesn‘t work for user defined environment variable. This problem can be solved
by using the following code:

import java.io.BufferedReader;

import java.io.InputStreamReader;

/**

* Environment class simulates the System.getenv() method which is deprecated

* on java 1.4.2

*

* @author v-josp

*/

public class TestRoot

{

//result of all enviornment variables

private static BufferedReader commandResult;

static

{

String cmd = null;

String os = null;

//getting the OS name

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

// according to OS set the command to execute

if(os.startsWith("windows"))

{

cmd = "cmd /c SET";

}

else

{

cmd="env";

}

try

{

//execute the command and get the result in the form of InputStream

Process p = Runtime.getRuntime().exec(cmd);

//parse the InputStream data

InputStreamReader isr = new InputStreamReader(p.getInputStream());

commandResult= new BufferedReader(isr);

}

catch (Exception e)

{

System.out.println("OSEnvironment.class error: " + cmd +
":" + e);

}

}

/**

* This method is used to get the path of the given enviornment variable. This

* method tries to simulates the System.getenv() which is deprecated on java
1.4.2

*

* @param String - name of the environment variable

* @param String - default value

* @return

*/

public static String getenv(String envName,String defaultValue)

{

String line = null;

try

{

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

{

if(line.indexOf(envName)>-1)

{

return line.substring(line.indexOf(envName)+envName.length()+1);

}

}

return defaultValue;

}

catch (Exception e)

{

return defaultValue;

}

}

public static void
main(String args[])

{

System.out.println(TestRoot.getenv("CLASSPATH",""));

}

}

时间: 2024-10-02 13:14:18

java中获取系统属性以及环境变量的相关文章

Java获取系统属性及环境变量

当程序中需要使用与操作系统相关的变量(例如:文件分隔符.换行符)时,Java提供了System类的静态方法getenv()和getProperty()用于返回系统相关的变量与属性,getenv方法返回的变量大多于系统相关,getProperty方法返回的变量大多与java程序有关. 系统属性和环境变量都是名称与值之间的映射.两种机制都能用来将用户定义的信息传递给 Java进程.环境变量产生更多的全局效应,因为它们不仅对Java子进程可见,而且对于定义它们的进程的所有子进程都是可见的.在不同的操作

JAVA中获取系统时间

一. 获取当前系统时间和日期并格式化输出: import java.util.Date;import java.text.SimpleDateFormat; public class NowString {public static void main(String[] args) { SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式System.out.println(df.forma

java中获取系统的当前时间

转自:http://www.cnblogs.com/Matrix54/archive/2012/05/01/2478158.html 一. 获取当前系统时间和日期并格式化输出: import java.util.Date;import java.text.SimpleDateFormat; public class NowString {public static void main(String[] args) { SimpleDateFormat df = new SimpleDateFor

Java中获取系统相关信息——sigar

一.sigar简介 sigar中文名是系统信息收集和报表工具,是一个开源的工具,提供了跨平台的系统信息收集的API,可以和绝大多数操作系统和大多数版本打交道,可以收集的信息包括: 1.操作系统的信息,包括:dataModel.cpuEndian.name.version.arch.machine.description.patchLevel.vendor.vendorVersion.vendorName.vendorCodeName 2.CPU信息,包括:基本信息(vendor.model.mh

Java中JDK的安装的环境变量的配置;

本文转自:http://blog.csdn.net/luoweifu/article/details/6789595 如你在E:java目录下编写了一个HelloJava.java文件,要对她进行编译运行,打开命令提示符,输入“E:”,“cd java”,“javac HelloJava.java”,如果编译正常则下一行会出现E:\java,再输入“java HelloJava”,运行正常,出现“Hello Java”.如:

Java之获取系统属性

1 import java.util.Enumeration; 2 import java.util.Properties; 3 4 public class Example609 { 5 public static void main(String[] args) { 6 // TODO Auto-generated method stub 7 Properties properties = System.getProperties(); 8 Enumeration propertiesNam

jdk(Java SE JDK)安装与环境变量配置攻略

2017-01-08 21:00:55  jdk安装与环境变量配置攻略   1.下载jdk安装包 附个下载链接 http://www.oracle.com/technetwork/java/javase/downloads/index.html 2.安装JDK 选择安装目录,其中安装过程中会出现两次提示 .First.安装 jdk ,Second.安装 jre .小编建议两个安装在同一文件夹的不同子文件夹中. (jdk和jre不能安装在同一文件夹的根目录下,jdk和jre安装在同一文件夹极易出错

java中获取环境变量

分为获取java自身的一些环境变量和和操作系统相关的环境变量. 获取JVM相关的一些变量 在运行时设置一个环境变量 debug 为 true: java -Ddebug=true YourClass在程序中设置一个环境变量 debug 为 true: System.setProperty( "debug", "true" );获取一个环境变量 debug : String debug = System.getProperty( "debug" )

Java千百问_02基本使用(013)_linux系统如何管理环境变量

点击进入_更多_Java千百问 1.linux系统如何管理环境变量 我们都知道windows的环境变量的配置已经完全被图形化了,我们可以在我的电脑的属性中简单的进行配置,那么对于linux这样没有图形化配置的操作系统应该如何配置呢?我们具体来看: linux中环境变量包括系统级和用户级,系统级的环境变量是每个登录到系统的用户都要读取的系统变量,而用户级的环境变量则是该用户使用系统时加载的环境变量.具体配置方法如下: 系统级 通过修改/etc/profile./etc/environment文件配