- 使用 ClassLoader.getResourceAsStream() 方法
可以使用類加載器來獲取資源文件的輸入流。該方法接受一個資源文件路徑參數,返回一個 InputStream 對象。
InputStream inputStream = getClass().getClassLoader().getResourceAsStream("file.txt");
注意,該方法返回的資源文件路徑是相對于類加載器的根路徑。因此,對于 resources 目錄下的文件,需要在文件名前加上 "classpath:" 前綴。例如: "classpath:file.txt"。
- 使用 Class.getResourceAsStream() 方法
可以使用 Class 類的 getResourceAsStream() 方法來讀取資源文件。該方法接受一個資源文件路徑參數,返回一個 InputStream 對象。
InputStream inputStream = getClass().getResourceAsStream("/file.txt");
該方法返回的資源文件路徑是相對于當前類的路徑。因此,對于 resources 目錄下的文件,需要在文件名前加上 "/" 前綴。例如: "/file.txt"。
- 使用 ResourceLoader 加載文件
可以使用 Spring 的 ResourceLoader 接口來加載資源文件。ResourceLoader 接口有一個 getResource() 方法,接受一個資源文件路徑參數,返回一個 Resource 對象。
Resource resource = resourceLoader.getResource("classpath:file.txt");
InputStream inputStream = resource.getInputStream();
需要注意的是,需要在類中注入 ResourceLoader 對象,并在方法中使用。例如:
@Autowired
private ResourceLoader resourceLoader;
public void readResourceFile() throws IOException {
Resource resource = resourceLoader.getResource("classpath:file.txt");
InputStream inputStream = resource.getInputStream();
}
- 使用 ResourceUtils 加載文件
ResourceUtils 是 Spring 提供的一個工具類,用于加載資源文件。可以使用 ResourceUtils.getFile() 方法來獲取文件對象。
File file = ResourceUtils.getFile("classpath:file.txt");
需要注意的是,該方法只適用于本地文件系統和 JAR 文件。對于 WAR 文件或者其他類型的文件,該方法可能無法正常工作。
- 使用 ApplicationContext 加載文件
可以使用 ApplicationContext 的 getResource() 方法來加載資源文件。該方法接受一個資源文件路徑參數,返回一個 Resource 對象。
Resource resource = applicationContext.getResource("classpath:file.txt");
InputStream inputStream = resource.getInputStream();
需要注意的是,需要在類中注入 ApplicationContext 對象,并在方法中使用。例如:
@Autowired
private ApplicationContext applicationContext;
public void readResourceFile() throws IOException {
Resource resource = applicationContext.getResource("classpath:file.txt");
InputStream inputStream = resource.getInputStream();
}
- 使用 ServletContext 加載文件
可以使用 ServletContext 的 getResourceAsStream() 方法來讀取資源文件。該方法接受一個資源文件路徑參數,返回一個 InputStream 對象。
InputStream inputStream = servletContext.getResourceAsStream("/WEB-INF/classes/file.txt");
需要注意的是,需要在類中注入 ServletContext 對象,并在方法中使用。例如:
@Autowired
private ServletContext servletContext;
public void readResourceFile() throws IOException {
InputStream inputStream = servletContext.getResourceAsStream("/WEB-INF/classes/file.txt");
}
- 使用 File System 加載文件
可以使用 File 類來讀取資源文件。需要提供完整的文件路徑。
File file = new File("src/mAIn/resources/file.txt");
InputStream inputStream = new FileInputStream(file);
需要注意的是,使用該方法需要提供完整的文件路徑,因此需要知道文件所在的絕對路徑。
- 使用 Paths 和 Files 加載文件
可以使用 JAVA NIO 中的 Paths 和 Files 類來讀取資源文件。該方法需要提供完整的文件路徑。
Path path = Paths.get("src/main/resources/file.txt");
InputStream inputStream = Files.newInputStream(path);
需要注意的是,使用該方法需要提供完整的文件路徑,因此需要知道文件所在的絕對路徑。
- 使用 ClassPathResource 加載文件
可以使用 Spring 提供的 ClassPathResource 類來讀取資源文件。該方法需要提供資源文件的相對路徑。
ClassPathResource resource = new ClassPathResource("file.txt");
InputStream inputStream = resource.getInputStream();
需要注意的是,ClassPathResource 會在類路徑下查找資源文件,因此不需要提供完整的文件路徑。
以上 9 種方式,都可以用來讀取 Spring Boot 項目中 resources 目錄下的文件。不同的方法適用于不同的場景,可以根據需要選擇合適的方法。
實際開發中推薦
推薦使用以下幾種方法:
- 使用 ClassLoader.getResourceAsStream() 方法
這是一種通用的方式,可以適用于大多數情況。
- 使用 ResourceLoader 加載文件
如果使用 Spring 框架,可以使用 ResourceLoader 接口來加載資源文件。這種方式適用于大多數 Spring Boot 項目。
- 使用 ClassPathResource 加載文件
如果只需要讀取 resources 目錄下的文件,可以使用 Spring 提供的 ClassPathResource 類來加載文件。這種方式比較簡單,不需要提供完整的文件路徑。
需要注意的是,使用不同的方式需要了解其適用的場景和使用方法。對于不同的項目和需求,可能需要選擇不同的方式。