本帖最后由 黄鸿达 于 2013-2-9 23:40 编辑
- import java.io.*;
- public class FileReader {
- public static void main(String[] args) throws IOException {
- FileReader fr=new FileReader("D:\\Demo.txt");
- //为什么定义1024的整数倍?
- char[] c=new char[1024];
- int num=0;
- while((num=fr.read(c))!=-1){
- System.out.println(new String(c,0,num));
- }
- }
- }
复制代码 毕老师说定义把缓冲的数组定义1024的整数倍,我不懂,求解释 |
|