Home Java Java-get-example Java example program to get the environment variable



Java example program to get the environment variable
Posted on: October 24, 2008 at 12:00 AM
The getenv() method of the java.lang.System provide us the functionality to get the environment variable value.

Java example program to get the environment variable

     

java get environment variable

The getenv() method of the java.lang.System provide us the functionality to get the environment variable value. To get the single environment variables value we have to call the getenv("environment variable") method where environment variable is a value that we want to evaluate. Here is the simple example of getting environment variable "WINDIR". 

Here is the full code of GetEnvironmentVariable.java as follows:

GetEnvironmentVariable.java

import java.util.*;
import java.lang.*;

public class GetEnvironmentVariable
{
  public static void main(String args[]) {
  try{
  String environmentVariable = System.getenv("WINDIR");
  System.out.print("Environment Variable are =>"+environmentVariable);
  }catch (Exception e){
  System.out.println("Exception caught ="+e.getMessage());
  }
  }
}

Output:

C:\javaexamples>javac GetEnvironmentVariable.java

C:\javaexamples>java GetEnvironmentVariable
Environment Variable are =>C:\WINNT

Download Source Code

Related Tags for Java example program to get the environment variable:
javacideantvariablesfunctionfunioluamethodvariablegetsystemenvironmentvivalueevalriaidfunctionalsimpleexamplecalluncwheretoexamsinglelaneitlivarimincalmntwancajesemdirfuncallmeproenvevaluatesysxaxampuatsatisirironhallmplfunctionalityarsimwantvattssrithavstabablaluhatevagetenvevapleplprndono


More Tutorials from this section

Ask Questions?    Discuss: Java example program to get the environment variable  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.