Link to home
Start Free TrialLog in
Avatar of rzvika
rzvika

asked on

Read an enviroment variable from a java program

I want to get an enviroment variable from a java program.
Can you help me?
Thanks!
Avatar of SEve
SEve

public static Properties java.lang.System.getProperties()

Determines the current system properties.
If there is a security manager, its checkPropertiesAccess method is called with no arguments. This may result in a security exception.

The current set of system properties is returned as a Properties object. If there is no current set of system properties, a set of system properties is first created and initialized.

This set of system properties always includes values for the following keys: Key Description of Associated Value
java.version Java version number
java.vendor Java vendor-specific string
java.vendor.url Java vendor URL
java.home Java installation directory
java.class.version Java class format version number
java.class.path Java class path
os.name Operating system name
os.arch Operating system architecture
os.version Operating system version
file.separator File separator ("/" on UNIX)
path.separator Path separator (":" on UNIX)
line.separator Line separator ("\n" on UNIX)
user.name User's account name
user.home User's home directory
user.dir User's current working directory

public static String java.lang.System.getProperty(String key)

Gets the system property indicated by the specified key.
First, if there is a security manager, its checkPropertyAccess method is called with the key as its argument. This may result in a system exception.

If there is no current set of system properties, a set of system properties is first created and initialized in the same manner as for the getProperties method.


Parameters:
key - the name of the system property.
Returns:
the string value of the system property, or null if there is no property with that key.

seve
Avatar of rzvika

ASKER

It doesn't know even the PATH variable.
I think it contains a small amount of properties related to java (but it definitely doesn't contain others)
i really don't sure about most of evnironment variables, because of system dependency... maybe native methods can help

seve
ASKER CERTIFIED SOLUTION
Avatar of Andrey_Kulik
Andrey_Kulik

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rzvika

ASKER

Will be it good for unix too ?
it won't be good for unix because of "cmd /C set", which is windows nt/2000 command. for unix run just "set".

seve
Avatar of rzvika

ASKER

1. The command for Sun OS is: "command set"
2. When I try in Win98 "command /C set" it thrwos me this:
java.io.IOException: CreateProcess: command /C set  error=0    
at java.lang.Win32Process.create(Native Method)    
at java.lang.Win32Process.<init>(Unknown Source)    
at java.lang.Runtime.execInternal(Native Method)    
at java.lang.Runtime.exec(Unknown Source)    
at java.lang.Runtime.exec(Unknown Source)    
at java.lang.Runtime.exec(Unknown Source)    
at avaya.util.EnvironmentVariables.init(EnvironmentVariables.java:51)    
at avaya.util.EnvironmentVariablesApplet.init(EnvironmentVariablesApplet.java:34)    
at sun.applet.AppletPanel.run(Unknown Source)    
at java.lang.Thread.run(Unknown Source)
Avatar of rzvika

ASKER

I've succeeded, the command is:
"command.com /C set"

...but I do have a proplem:
The console window is opened and I don't want it.
Is there a way to open it minimized ?