import java.io.*;
public class Main1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
String str="";
try{
BufferedReader red=new BufferedReader(new FileReader("F:\\MyDownloads\\me"));
//red.readLine()作用是读取文本行,并且将返回值(String类型)赋给str变量
while((str=red.readLine()) != null){
System.out.println(str);
}
System.out.println(str);
}catch(IOException e){}
}
}
/*输出的内容为:
慕课网
null
*/
望远
忘性最大的人
相关分类