每次读文件各种流的转换麻烦,就自己写一篇,以后多搞一种就记录一种。
ClassPathResource classPathResource = new ClassPathResource("aaa.json"); InputStream inputStream = classPathResource.getInputStream(); byte[] body = inputStream.readAllBytes(); String str = new String(body);
每次读文件各种流的转换麻烦,就自己写一篇,以后多搞一种就记录一种。
ClassPathResource classPathResource = new ClassPathResource("aaa.json"); InputStream inputStream = classPathResource.getInputStream(); byte[] body = inputStream.readAllBytes(); String str = new String(body);
转载于:https://my.oschina.net/uwith/blog/3048972