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*/
添加回答
举报
0/150
提交
取消