标签:stream java 创建 file inpu string 读取文本 通过 面试
面试题目java读取文本内容方式 FileInputStream fis = new FileInputStream("a.txt"); //创建流对象
byte[] arr = new byte[4];
int len;
while((len = fis.read(arr)) != -1) {
System.out.print(new String(arr,0,len));
}
fis.close();
FileReader fileReader = new FileReader("a.txt");
int c;
while ((c = fileReader.read()) != -1) {
System.out.print((char) c);
}
fileReader.close();
}
标签:stream java 创建 file inpu string 读取文本 通过 面试
原文地址:http://blog.51cto.com/357712148/2316590