将文本文件内容转换为字符串

时间:2014-08-06 13:15:46

标签: java string text-files

我有一个问题。如何将所有文本文件内容设置为字符串格式? 请告诉我那段代码。谢谢。 P.S搜索没有帮助。 抱歉我的英语不好。

1 个答案:

答案 0 :(得分:0)

  public static String deserializeString(File file)
  throws IOException {
      int len;
      char[] chr = new char[4096];
      final StringBuffer buffer = new StringBuffer();
      final FileReader reader = new FileReader(file);
      try {
          while ((len = reader.read(chr)) > 0) {
              buffer.append(chr, 0, len);
          }
      } finally {
          reader.close();
      }
      return buffer.toString();
  }