Java中获取当前运行程序的根目录(从有类或包开始)

Java中获取当前运行程序的根目录(从有类或包开始)
public class Test2 {
public static void main(String[] args) throws Exception{
System.out.println(Test2.class.getProtectionDomain().getCodeSource().getLocation());// 获取程序的根目录
}
}
摘自:http://blog.sina.com.cn/s/blog_643937a30100gkrz.html

你可能感兴趣的:(Java中获取当前运行程序的根目录(从有类或包开始))