码迷,mamicode.com
首页 > 编程语言 > 详细

使用buffered流结合byte数组,读入文件中的内容,包括中文字符

时间:2019-07-28 17:34:29      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:class   print   throws   cas   inpu   数组   stat   public   字符   

package com.itcast.demo05.Buffered;

import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.IOException;

/**
* @author newcityman
* @date 2019/7/28 - 16:35
* 使用buffered流结合byte数组,读入文件中的内容,包括中文字符
*/
public class BufferedInputStream01 {
public static void main(String[] args) throws IOException {
FileInputStream fis = new FileInputStream("day18_IOAndProperties\\buffer.txt");
BufferedInputStream bis = new BufferedInputStream(fis);
byte[] bytes = new byte[1024];
int len =0;
while ((len=bis.read(bytes))!=-1){
System.out.print(new String(bytes));
}
}
}

使用buffered流结合byte数组,读入文件中的内容,包括中文字符

标签:class   print   throws   cas   inpu   数组   stat   public   字符   

原文地址:https://www.cnblogs.com/newcityboy/p/11259946.html

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