我正在尝试编写一个需要从文件中读取文本的程序。在做研究时,我发现这段代码完全符合我的需要:
String string="";
try{
InputStream ips = new FileInputStream("WORDS.txt");
InputStreamReader ipsr = new InputStreamReader(ips);
BufferedReader br = new BufferedReader(ipsr);
String line;
while ((line=br.readLine())!=null){
System.out.println(line);
string+=line+"\n";
}
br.close();
}
catch (Exception e){
System.out.println(e.toString());
}
有人可以解释一下这段代码是如何工作的吗?我是编程新手,对大部分代码都不熟悉。它不是为了家庭作业——它是我为个人利益而编写的程序。谢谢你。