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

|