Home Java Java-get-example Java Get Class path
Questions:Ask|Latest



Java Get Class path
Posted on: October 23, 2008 By Deepak Kumar
In this section, you will learn how to get the class path. The method System.getProperties() determines the current system properties.

Java Get Class path

     

In this section, you will learn how to get the class path. The method System.getProperties() determines the current system properties. 

 

 

 

Here is the code:

mport java.util.Properties;

public class GetClassPath {
static Properties prop = System.getProperties();
public static void main(String[] args) {
 prop.setProperty("java.class.path", getClassPath());
  System.out.println("java.class.path now = " + getClassPath());
  }
  static String getClassPath() {
  return prop.getProperty("java.class.path"null);
  }
}

 

Output will be displayed as:

Download Source Code

 


Recommend the tutorial

Ask Questions?    Discuss: Java Get Class path  

Post your Comment


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