summaryrefslogtreecommitdiff
blob: 6cafe245c43bf310be25903e5e0d9f44120bd1c7 (plain)
1
2
3
4
5
6
7
8
class pathtest {

	public static void main (String[] args) {
		System.out.println("CLASSPATH: " + System.getProperty("java.class.path"));
		System.out.println("BOOTCLASSPATH: " + System.getProperty("sun.boot.class.path"));
		System.out.println("LIBRARY_PATH: " + System.getProperty("java.library.path"));
	}
}