读取文本,一次全部读取并转成字符串
Posted moris5013
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取文本,一次全部读取并转成字符串相关的知识,希望对你有一定的参考价值。
读取文本文件
public class ReadText { public static void main(String[] args) { try { // 1.建立连接 FileInputStream fis = new FileInputStream("E:\\protocol\\01.txt"); // 2.设置保存数据的字节数组 byte[] dest = new byte[fis.available()]; // 3.循环读取 while (fis.read(dest) != -1) { // 将字节数组中的内容转换为String内容字符串输出 String str = new String(dest, 0, dest.length); System.out.println(str); System.out.println(str.length()); } // 4.关闭流 fis.close(); } catch (Exception e) { e.printStackTrace(); } } }
以上是关于读取文本,一次全部读取并转成字符串的主要内容,如果未能解决你的问题,请参考以下文章