程序一:
String s;
while((s=one.readLine())!=null){
System.out.println(s);
}程序二:
String s=one.readLine();
while(s!=null){
System.out.println(s);
s=readLine();
}为什么这两个程序输出结果不一样?readLine