为了详细说明要介绍的几种方法,本例准备了两个工程:
① Java工程:
② web工程:
tomcat路径:D:\tomcat\
Ⅰ、Thread.currentThread().getContextClassLoader().getResource(name).getPath();
name:资源名称,例如:"com/test/test.txt"。
(1)name="", 获取编译文件.class的路径根目录,Java工程的.class文件在本工程的/bin/目录,web工程在tomcat下的/class/目录。
String path = Thread.currentThread().getContextClassLoader().getResource("").getPath();
System.out.println(path);
Java工程运行结果:/D:/workspaceMyeclipse/testProject/bin/
web工程运行结果:/D:/tomcat/webapps/webProject/WEB-INF/classes/
(2)name="com/test/",获取包名的路径。若包不存在,会抛异常
String path = Thread.currentThread().getContextClassLoader().getResource("com/test/").getPath();
System.out.println(path);
Java工程运行结果:/D:/workspaceMyeclipse/testProject/bin/com/test/
web工程运行结果:/D:/tomcat/webapps/webProject/WEB-INF/classes/com/test/
(3)name="com/test/test.txt",获取资源路径
String path = Thread.currentThread().getContextClassLoader().getResource("com/test/test.txt").getPath();
System.out.println(path);
Java工程运行结果:/D:/workspaceMyeclipse/testProject/bin/com/test/test.txt
web工程运行结果:/D:/tomcat/webapps/webProject/WEB-INF/classes/com/test/test.txt
Ⅱ、Test.class.getProtectionDomain().getCodeSource().getLocation().getPath();
Test为main方法所在类名若在web工程中,可以改写为:
this.getClass().getProtectionDomain().getCodeSource().getLocation().getPath();
该方法等同于1的(1),能获取.class文件的根目录路径。若要得到.class的路径,需要自行拼接字符串。例如:
String path = test.class.getProtectionDomain().getCodeSource().getLocation().getPath();
String filePath = "com/test/base/java/test1.txt";
//判断拼接的路径是否正确
File file = new File(path, filePath);
System.out.println(file.getAbsolutePath());//文件绝对路径
System.out.println(file.exists());//文件是否存在
System.out.println(file.getName());//文件名称
运行结果:
当要获取web工程中的html或者js等文件时也可用此法拼接。
Ⅲ、Test.class.getResource(name).getPath();
name:资源名称,例如:"/com/test/test.txt",与第一种方法类似,区别在于路径名称前多一个反斜杠"/"。
(1)name="",获取Test.class编译文件所在目录的绝对路径,与第一种方法结果不同。
String path = test.class.getResource("").getPath();
System.out.println(path);
运行结果:
/D:/testProject/bin/com/test/
(2)name="/",获取.class文件的根目录路径,等同于:
Thread.currentThread().getContextClassLoader().getResource("").getPath();
String path = test.class.getResource("/").getPath();
System.out.println(path);
运行结果:
/D:/testProject/bin/
(3)name="/com/test/",获取包名(com.test)的路径
String path = test.class.getResource("/com/test").getPath();
System.out.println(path);
运行结果:
/D:/testProject/bin/com/test/
(4)name="/com/test/test.txt",获取包com.test下名为test.txt的文件的路径
String path = test.class.getResource("/com/test/test.txt").getPath();
System.out.println(path);
运行结果:
/D:/testProject/bin/com/test/test.txt