当前位置:   article > 正文

读JSON并转成字符串(解决json文件中乱码问题)_readfilesync json数据的字符串不对

readfilesync json数据的字符串不对
  1. //json转String
  2. public static String json2String(String path) throws IOException {
  3. StringBuilder result = new StringBuilder();
  4. InputStream in = new FileInputStream(path);
  5. //读取文件上的数据。  
  6. // 将字节流向字符流的转换。  
  7. InputStreamReader isr = new InputStreamReader(in,"UTF-8");//读取  
  8. //创建字符流缓冲区  
  9. BufferedReader bufr = new BufferedReader(isr);//缓冲  
  10. String line = null;
  11. while ((line = bufr.readLine()) != null) {
  12. result.append(System.lineSeparator()+line);
  13. }
  14. isr.close();
  15. return result.toString();
  16. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/283484
推荐阅读
相关标签
  

闽ICP备14008679号