springboot中读取classpath下的资源文件

springboot中读取classpath下的资源文件,第1张

springboot中读取classpath下的资源文件

1、NIO包中的 *** 作

  String content = new String(Files.readAllBytes(Paths.get(ClassLoader.getSystemResource("static/xxxx.txt").toURI())), "utf-8");
        

2、ClassPathResource 读取 inputstream

        ClassPathResource classPathResource = new ClassPathResource("static/xxx.txt");
        InputStream inputStream = classPathResource.getStream();
        int fileLength = (int) classPathResource.getFile().length();
        byte b[] = new byte[fileLength];
        inputStream.read(b);
        inputStream.close();
        String str = new String(b, "utf-8");

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5685559.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存