view mxtool/ClasspathDump.java @ 16131:a4a2147a6aa6

Merge with 9410f831fefa2a7af1865d65b32bf6019f197bd8
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Tue, 17 Jun 2014 17:42:24 -0700
parents a6bd486b1b44
children
line wrap: on
line source

public class ClasspathDump {
    public static void main(String[] args) {
        System.out.print(System.getProperty("sun.boot.class.path"));
        System.out.print("|");
        System.out.print(System.getProperty("java.ext.dirs"));
        System.out.print("|");
        System.out.print(System.getProperty("java.endorsed.dirs"));
    }
}