码迷,mamicode.com
首页 > 其他好文 > 详细

读取文本,一次全部读取并转成字符串

时间:2019-04-30 12:11:29      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:while   oid   转换   except   cep   bsp   stat   NPU   字节数组   

读取文本文件

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();
        }

    }

}

 

读取文本,一次全部读取并转成字符串

标签:while   oid   转换   except   cep   bsp   stat   NPU   字节数组   

原文地址:https://www.cnblogs.com/moris5013/p/10795165.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!