Originally posted by aakash bhatt:
Is it the same used for storing an environment variable.
As far as I know,
Java does not support OS environment variables, except via a deprecated method on java.lang.System. It has been deprecated since an early version and may not do anything at all now. Certainly, you should not use it.
You can use platform-specific code to get/set OS environment variables, with JNI.
Anyone know why OS environment variables are unsupported by Java? What platform didn't like them? The concept exists in all DOS/Windows/Unix/Linux/MacOSX.