项目开发中,经常会有一些静态资源,被放置在resources
目录下,随项目打包在一起,代码中要使用的时候,通过文件读取的方式,加载并使用;
本文中汇总整理了九种方式获取resources
目录下文件的方法。
其中公用的打印文件方法如下:
/** * 根据文件路径读取文件内容 * * @param fileInPath * @throws IOException */ public static void getFileContent(Object fileInPath) throws IOException { BufferedReader br = null; if (fileInPath == null) { return; } if (fileInPath instanceof String) { br = new BufferedReader(new FileReader(new File((String) fileInPath))); } else if (fileInPath instanceof InputStream) { br = new BufferedReader(new InputStreamReader((InputStream) fileInPath)); } String line; while ((line = br.readLine()) != null) { System.out.println(line); } br.close(); }
推荐一个开源免费的 Spring Boot 最全教程:
https://github.com/javastacks/spring-boot-best-practice
方式一
主要核心方法是使用getResource和getPath方法,这里的getResource("")里面是空字符串
public void function1(String fileName) throws IOException { String path = this.getClass().getClassLoader().getResource("").getPath();//注意getResource("")里面是空字符串 System.out.println(path); String filePath = path + fileName; System.out.println(filePath); getFileContent(filePath); }
方式二
主要核心方法是使用getResource
和getPath
方法,直接通过getResource(fileName)
方法获取文件路径,注意如果是路径中带有中文一定要使用URLDecoder.decode
解码。
/** * 直接通过文件名getPath来获取路径 * * @param fileName * @throws IOException */ public void function2(String fileName) throws IOException { String path = this.getClass().getClassLoader().getResource(fileName).getPath();//注意getResource("")里面是空字符串 System.out.println(path); String filePath = URLDecoder.decode(path, "UTF-8");//如果路径中带有中文会被URLEncoder,因此这里需要解码 System.out.println(filePath); getFileContent(filePath); }
方式三
直接通过文件名+getFile()
来获取文件。如果是文件路径的话getFile
和getPath
效果是一样的,如果是URL路径的话getPath
是带有参数的路径。
如下所示:
url.getFile()=/pub/files/foobar.txt?id=123456 url.getPath()=/pub/files/foobar.txt
使用getFile()
方式获取文件的代码如下:
/** * 直接通过文件名+getFile()来获取 * * @param fileName * @throws IOException */ public void function3(String fileName) throws IOException { String path = this.getClass().getClassLoader().getResource(fileName).getFile();//注意getResource("")里面是空字符串 System.out.println(path); String filePath = URLDecoder.decode(path, "UTF-8");//如果路径中带有中文会被URLEncoder,因此这里需要解码 System.out.println(filePath); getFileContent(filePath); }
方式四(重要)
直接使用getResourceAsStream
方法获取流,上面的几种方式都需要获取文件路径,但是在SpringBoot中所有文件都在jar包中,没有一个实际的路径,因此可以使用以下方式。
/** * 直接使用getResourceAsStream方法获取流 * springboot项目中需要使用此种方法,因为jar包中没有一个实际的路径存放文件 * * @param fileName * @throws IOException */ public void function4(String fileName) throws IOException { InputStream in = this.getClass().getClassLoader().getResourceAsStream(fileName); getFileContent(in); }