Java自用IO流中读数据中的难点
Posted 王六六的IT日常
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java自用IO流中读数据中的难点相关的知识,希望对你有一定的参考价值。
源码:
public int read(char cbuf[]) throws IOException {
return read(cbuf, 0, cbuf.length);
}
//2.FileReader流的实例化
fr = new FileReader(file);
//3.读入的操作
//read(char[] cbuf):返回每次读入cbuf数组中的字符的个数。如果达到文件末尾,返回-1
char[] cbuf = new char[5];
int len;
while((len = fr.read(cbuf)) != -1){
//方式一 正确的写法
// for(int i = 0;i < len;i++){
// System.out.print(cbuf[i]);
// }
//方式二:
//正确的写法
String str = new String(cbuf,0,len);
System.out.print(str);
以上是关于Java自用IO流中读数据中的难点的主要内容,如果未能解决你的问题,请参考以下文章