亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

springboot怎么讀取相對路徑文件

小億
611
2023-09-28 17:18:46
欄目: 編程語言

在Spring Boot中,可以使用ResourceLoader來讀取相對路徑文件。可以將文件放置在項目的resources目錄中,然后使用ResourceLoader讀取該文件。

以下是一個示例:

import org.springframework.core.io.Resource;
import org.springframework.core.io.ResourceLoader;
import org.springframework.stereotype.Component;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
@Component
public class FileHelper {
private final ResourceLoader resourceLoader;
public FileHelper(ResourceLoader resourceLoader) {
this.resourceLoader = resourceLoader;
}
public String readFile(String filePath) throws IOException {
Resource resource = resourceLoader.getResource(filePath);
BufferedReader reader = new BufferedReader(new InputStreamReader(resource.getInputStream()));
StringBuilder content = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
content.append(line);
}
reader.close();
return content.toString();
}
}

在上述示例中,FileHelper通過構造函數注入了ResourceLoader,然后使用resourceLoader.getResource(filePath)獲取相對路徑文件的Resource對象。接下來,使用Resource對象的getInputStream()方法獲取文件的輸入流,并使用BufferedReader逐行讀取文件內容。最后,將文件內容轉換為字符串并返回。

你可以在任何Spring組件中使用FileHelper來讀取相對路徑文件:

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.CommandLineRunner;
import java.io.IOException;
@SpringBootApplication
public class MyApplication implements CommandLineRunner {
private final FileHelper fileHelper;
@Autowired
public MyApplication(FileHelper fileHelper) {
this.fileHelper = fileHelper;
}
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
@Override
public void run(String... args) throws IOException {
String content = fileHelper.readFile("classpath:example.txt");
System.out.println(content);
}
}

在上述示例中,MyApplication使用@Autowired注解將FileHelper注入到MyApplication中。在run方法中,調用fileHelper.readFile("classpath:example.txt")來讀取resources目錄下的example.txt文件,并輸出文件內容。

需要注意的是,classpath:前綴是用于指定相對路徑文件的前綴,確保正確地從resources目錄中讀取文件。

0
密山市| 黎城县| 邢台市| 来安县| 双峰县| 桐梓县| 汉中市| 新闻| 临江市| 辉南县| 长白| 双峰县| 上虞市| 县级市| 临安市| 安陆市| 若尔盖县| 宁城县| 南岸区| 紫阳县| 孝昌县| 颍上县| 咸阳市| 普兰店市| 新蔡县| 禹城市| 綦江县| 井研县| 那曲县| 个旧市| 舞阳县| 勃利县| 体育| 兴山县| 台北市| 洱源县| 玉山县| 大宁县| 贺州市| 南开区| 柳林县|