在控制器中将Spring Boot资源作为文件访问

时间:2016-06-15 23:37:15

标签: spring-boot

我需要使用java.io.File API访问Spring Boot Controller中/ src / main / resources / static / myfolder中的文件。我试过了

File folder = new File("/myfolder/");

但它不起作用。有什么想法吗?

1 个答案:

答案 0 :(得分:3)

这应该有效

File file = new File(getClass().getResource("/static/myfolder").getFile());
File[] files = file.listFiles();