develog

[spring boot] static 폴더 파일 읽기 본문

Dev/Spring Boot

[spring boot] static 폴더 파일 읽기

냐옴 2020. 11. 2. 16:24

 

@Autowired
private ResourceLoader resourceLoader;

String filePath = "classpath:static/my-static-file.txt";
InputStream inputStream = resourceLoader.getResource(filePath).getInputStream();
String str = FileCopyUtils.copyToString(new InputStreamReader(inputStream));
System.out.println("str = " + str);

 

Comments