我正在尝试使用 FileReader 读取文件的内容。但是我不想一行一行地读取文件。是否可以不用循环读取整个文件。 I am using the following code
try
{
File ff=new File("abc.txt");
FileReader fr=new FileReader(ff);
String s;
while(br.read()!=-1)
{
s=br.readLine();
}
}
catch(Exception ex)
{
ex.printStackTrace();
}