直接上图吧,新建一个maven工程后,main目录下会有java和resources两个文件夹,其中java文件夹下存放源代码,resources文件夹下存放一些配置文件等。
在弄清楚编译后,资源文件以及字节码存在哪里这个问题之前,有必要明白什么是classpath
classpath实际上就是编译后的 以 classes 文件夹为起点的路径,而在ItelliJ IDEA 中编译后的文件都会存入out/production下。
所以,编译后,resources文件夹中的文件以及java目录下的文件都会存入同一个目录(out/production)下,也就是说,编译后是不存在java和resources这两个目录的。
读取资源文件的若干中方法
package me.shenchao.main;
import java.io.*;
/** * Created by jerry on 16-4-20. */
public class Demo1 {
private static void readTxt(String filePath) {
BufferedReader reader = null;
try {
reader = new BufferedReader(new FileReader(filePath));
String line = null;
while ((line = reader.readLine()) != null) {
System.out.println(line);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
public static void main(String[] args) {
//获取classpath路径
System.out.println("classpath路径: "+Demo1.class.getClassLoader().getResource("").getPath());
//获取当前类的加载路径
System.out.println("当前类加载路径: "+Demo1.class.getResource("").getPath());
// 读取文件resources目录中文件的若干种方法
// 方法一:从classpath路径出发读取
readTxt(Demo1.class.getClassLoader().getResource("test/demo1.txt").getPath());
// 方法二:从类加载路径出发,相当于使用绝对路径
readTxt(Demo1.class.getResource("/test/demo1.txt").getPath());
// 方法三:从类加载路径出发,相当于使用相对路径
readTxt(Demo1.class.getResource("../../../test/demo1.txt").getPath());
}
}
其中demo1.txt文件中内容为:
hahahahahahahahahha
输出如下:
classpath路径: /home/jerry/IdeaProjects/Demo/out/production/demo1/
当前类加载路径: /home/jerry/IdeaProjects/Demo/out/production/demo1/me/shenchao/main/
hahahahahahahahahha
hahahahahahahahahha
hahahahahahahahahha
从上面可以发现getResource 与 class.getClassLoader().getResource 两者的区别:
前者获取的是当前类加载的路径,如果用此方法读取文件则有两种方法,与相对路径绝对路径非常类似,具体参见代码
后者获取的是类加载器的路径,即会到classpath路径下。可以理解当前在 classp/ 目录下,要想访问哪个文件,直接填写路径即可,不用区分相对路径和绝对路径。显然,此方法比较容易写出。推荐。
获得文件的绝对路径
文件在项目中的路径
maven 项目
如上图,maven项目的资源文件一般是放在src/main/resources目录下。
一般的web项目
对于一般的web项目的资源文件一般是放在WEB-INF目录下。
对于以上两种类型的web项目,其资源文件打包以后的路径是一致的,所以获取资源路径的方式也是一致的。
如何获取资源文件的路径
配置文件中加载资源文件
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext/applicationContext.xml</param-value>
</context-param>
就像在web.xml 文件中加在spring的配置文件时,只需要将资源文件的路径前面加上“classpath: “ 即可,“classpath:“ 后面的文件的路径是相对于src/main/resources 或者 WEB-INF 目录的
java类文件中获取资源文件的路径
import java.io.File;
/**
* web项目打包以后classes文件在磁盘中的绝对路径
* Created by guoenqian on 16/7/13. email:guoeq@jiedaibao.com
*/
public class WebPathUtil {
public static String getWebPath() {
String webPath = "";
File classesFile = new File(WebPathUtil.class.getClassLoader().getResource("").getPath());
webPath = classesFile.getParent() + File.separator + "classes" + File.separator;
return webPath;
}
}
此方法获得web项目打包以后classes文件在磁盘中的绝对路径
总结:我们获得资源文件的路径的原理就是把资源文件的项目路径转化为磁盘的绝对路径,这样拿到文件的路径才是唯一并且正确的。
Classpath是什么
classpath 是什么
classpath实际上就是编译后的 以 classes 文件夹为起点的路径
各种path获取到的路径的区别
Main.class.getResource(“”);
-> 得到的是当前class所在的路径
Main.class.getResourceAsStream(“”);
-> 是从当前路径查找资源资源
Main.class.getClassLoader.getResource(“”);
-> 得到的是当前类classloader加载类的起始位置
Main.class.getClassLoader.getResourceAsStream(“”);
-> 从classpath的起始位置查找资源
但是
Main.class.getResource(“/”);
-> 表示从classpath目录下找
也就是说 Main.class.getResource(“/”); 等价于 Main.class.getClassLoader.getResource(“”);
但是 Main.class.getClassLoader.getResourceAsStream(“/”); 返回的是null
关于Servlet 资源路径
ServletContext.getRealPath(“/”) 返回的是 war 包展开后的从系统根目录到war展开地址的根路径,比如windows 就是 file:///d/path/to/war/
也就是上面做了两个动作, 先从 war 根目录找到资源, 然后返回资源完整路径
同样的 ServletContext.getResource(“/”) 返回的的是从war 根目录查找到的资源,只不过返回的是 URL ServletContext.getResourceAsStream(“/”) 返回的是和上面一样的 InputStream
但是 ServletContext.getResource(“”) 返回的是相对于URL的路径,相当于从当前URL根路径查找资源 ServletContext.getResourceAsStream(“”) 和上面一样,只不过返回InputStream
http://localhost:8080/webbasic/simple ServletContext.getResource(“”) 返回的是 jndi:/localhost/webbasic/