view mxtool/ClasspathDump.java @ 15973:b048110014ff

Merge with ef43e8c355ade5ed058a5496f6e51ff4af66f0c0
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Wed, 28 May 2014 20:36:10 -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"));
    }
}