面试题目java读取文本内容方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试题目java读取文本内容方式相关的知识,希望对你有一定的参考价值。
面试题目java读取文本内容方式
二种方式
- 第一种通过FileInputStream()方式读取
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 fileReader = new FileReader("a.txt"); int c; while ((c = fileReader.read()) != -1) { System.out.print((char) c); } fileReader.close(); }
以上是关于面试题目java读取文本内容方式的主要内容,如果未能解决你的问题,请参考以下文章