从字符中构建字符串的最佳方法

这个问题在这里已经有了答案:

  • 将InputStream读取/转换为字符串56个答案

  • 你可以做类似的事情

    public String readTextFile(File file) {
          StringBuilder sb = new StringBuilder();
          try(BufferedReader br = new BufferedReader(new FileReader(file))){
              String line;
              while ((line = br.readLine()) != null){
                  sb.append(line);
              }
          }
          return sb.toString();
    }
    
    链接地址: http://www.djcxy.com/p/13743.html

    上一篇: Best way to build a String out of characters

    下一篇: length file from /sys/fs/cgroup/ in Java?