本帖最后由 lyj749 于 2012-2-9 17:40 编辑
public class Copy {
public static void main(String[] args) throws IOException {
copy_2();
}
private static void copy_2() throws IOException {
FileWriter W=new FileWriter("123.txt");
W.write("abc");
W.flush();
FileReader Y=new FileReader("123.txt");
while (Y.read()!=-1) {
System.out.print(Y.read());
}
Y.close();
W.close();
}
}
我写的一个IO的问题运行完了没看懂,为什么结果是98-1 ?? |