- import java.io.*;
- class CopyText
- {
- public static void main(String[] args) throws IOException
- {
-
- copy_1();
- }
- public static void copy_1()throws IOException
- {
- FileWriter fw = new FileWriter("RuntimeDemo_copy.txt");
- FileReader fr = new FileReader("RuntimeDemo.java");
- int ch = 0;
- while((ch=fr.read())!=-1);
- {
- fw.write(ch);
- }
- fw.close();
- fr.close();
- }
- }
复制代码 编译 运行 都没问题 ,但是出来的RuntimeDemo_copy.txt 文件 ,里面只有一个? ,是怎么回事?
|