所以我写了这个文件读取器方法,它应该返回文件中所有内容的字符串,但它不能正常工作。写入文件工作得很好,但是这种读取方法就不行。该方法当前所做的是读取添加的最后一个字符串/文本,但它不从头到尾读取文件。'br'是我的bufferedReader,它在同一个类的其他地方声明。下面是br的定义:
private static FileInputStream fis;
private static BufferedReader br;
,然后在构造函数中:
fis = new FileInputStream(file);
br = new BufferedReader(new InputStreamReader(fis));
方法:
public String readStuff(){
String line = "";
String r = "";
try{
while((line = br.readLine()) != null){
System.out.println(line + " read ");
r+= line;
}
//br.close(); JDK 7 does this automatically apparently
}catch(IOException e){
e.printStackTrace();
System.out.println("Error at readStuff!");
}
return r;
我知道我犯了一个逻辑错误或一些明显的错误,我只是不知道在哪里。 如果你想读取整个文件两次,你将不得不关闭它并打开新的流/阅读器。
这些流/读取器应该是方法的局部,而不是成员,当然也不是静态的。
使用File和FileReader
可以从Dir读取/写入文件
您可以使用File
类对象获取File
File file = new File("file.txt");
和After进程读取该文件
FileReader fr = new FileReader(file);
有完整的代码读取文件…
File file = new File("G:\Neon\data.txt");
FileReader fr = new FileReader(file);
String data = "";
while((i = fr.read()) != -1)
{
data = data + (char)i;
}
System.out.println(data);