在 Spring Boot 项目中,获取 resources 目录中的文件路径通常涉及到访问类路径资源(classpath resources)。Spring Boot 提供了一些工具类和方法,可以方便地访问这些资源。以下是一些常见的方法:
首先,我们在 Spring Boot 项目中的 resources (资源文件目录)下创建 file 目录,然后在 file 目录下创建 myBlog.txt 文件,并在文件中输入内容:您好,欢迎访问 pan_junbiao的博客。
1、使用项目路径
使用字符串方式写入文件的项目路径,这是最简单的方式。
String path = "src/main/resources/file/myBlog.txt";
@Test
public void readFileByPath() throws IOException
{String path = "src/main/resources/file/myBlog.txt";File file = new File(path);if (file.exists()){try (BufferedReader reader = new BufferedReader(new FileReader(file))){String line;while ((line = reader.readLine()) != null){System.out.println(line);}}} else{System.out.println("未找到文件!");}
}
执行结果:
2、使用 ApplicationContext 接口
ApplicationContext 是 Spring 框架中的一个核心接口,它是 Spring IoC 容器的实现之一,用于管理和组织应用程序中的各种 Bean,同时提供了一系列功能来支持依赖注入、AOP 等特性。同时 ApplicationContext 提供了对资源的访问能力,如文件、URL等。这通过 Resource 接口和 ResourceLoader 接口实现,使得访问外部资源变得简单。
@Autowired
private ApplicationContext applicationContext;@Test
public void readResourceFile() throws IOException
{Resource resource = applicationContext.getResource("classpath:/file/myBlog.txt");InputStream inputStream = resource.getInputStream();if (inputStream != null) {try (BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream))) {String line;while ((line = reader.readLine()) != null) {System.out.println(line);}}} else {System.out.println("File not found");}
}
3、使用 ResourceLoader 接口
ResourceLoader 是 Spring 提供的一个接口,用于加载资源。你可以在 Spring Bean 中注入 ResourceLoader,然后使用它来加载资源。
@Autowired
private ResourceLoader resourceLoader;@Test
public void readFileByResourceLoader() throws IOException
{Resource resource = resourceLoader.getResource("classpath:/file/myBlog.txt");if (resource.exists()){Path path = Paths.get(resource.getURI());String content = new String(Files.readAllBytes(path));System.out.println(content);} else{System.out.println("未找到文件!");}
}
4、使用 ClassLoader 类
你也可以使用当前类的 ClassLoader 来加载资源。ClassLoader 的 getResource 和 getResourceAsStream 方法可以访问类路径资源。
@Test
public void readFileByClassLoader() throws IOException
{ClassLoader classLoader = getClass().getClassLoader();InputStream inputStream = classLoader.getResourceAsStream("file/myBlog.txt");if (inputStream != null){try (BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream))){String line;while ((line = reader.readLine()) != null){System.out.println(line);}}} else{System.out.println("未找到文件!");}
}
5、使用 PathMatchingResourcePatternResolver 类
PathMatchingResourcePatternResolver 是 Spring 提供的一个工具类,用于解析资源路径模式。它扩展了 ResourceLoader 的功能。
@Test
public void readFileByResourcePattern() throws IOException
{PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();Resource resource = resolver.getResource("classpath:/file/myBlog.txt");if (resource.exists()){Path path = resource.getFile().toPath();String content = new String(Files.readAllBytes(path));System.out.println(content);} else{System.out.println("未找到文件!");}
}
注意:resource.getFile() 方法在某些情况下可能会抛出 UnsupportedOperationException,特别是在资源是从 JAR 文件中加载时。所以,更通用的方法是使用 InputStream 来读取文件内容。