📜  从类路径 spring boot 加载文件 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:18.164000             🧑  作者: Mango

代码示例1
public void testResourceFile() throws IOException {
        File resource = new ClassPathResource("test.json").getFile();
        String text = new String(Files.readAllBytes(resource.toPath()));
    }