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){} }}/*輸出的內(nèi)容為:慕課網(wǎng)null*/