view mxtool/ClasspathDump.java @ 17102:8c9ab783e814

DirectReadNode from unsafe does now sign/zero extend values which are shorter than int
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Fri, 12 Sep 2014 12:51:34 -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"));
    }
}