欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Java 默认三个ClassLoader的加载路径

程序员文章站 2022-06-22 09:53:23
...
String bootstrapPath = System.getProperty("sun.boot.class.path");
		System.out.println("BootStrapClassLoader Path : " + bootstrapPath);
		String extPath = System.getProperty("java.ext.dirs");
		System.out.println("ExtClassLoader Path : " + extPath);
		String appPath = System.getProperty("java.class.path");
		System.out.println("AppClassLoader Path : " + appPath);
相关标签: java boot