view mxtool/ClasspathDump.java @ 14955:be6fc21b25f8

Add possibility to have HotSpot linkages which are LEAF but still require a last_java_sp
author Gilles Duboscq <duboscq@ssw.jku.at>
date Thu, 03 Apr 2014 15:26:21 +0200
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"));
    }
}