本帖最后由 毅心缘 于 2014-6-2 13:22 编辑
执行程序后,新的文本出现了,可是文本为空。
- public class CopyText {
- public static void main(String[] args) throws IOException {
- copy_1();
- }
- public static void copy_1() throws IOException {
- FileWriter fw = new FileWriter("FileWriterDemo1_copy.txt");
- FileReader fr = new FileReader(FileWriterDemo1.java);
- int ch = 0;
- while ((ch = fr.read()) != -1) {
- fw.write(ch);
- }
- fw.close();
- fr.close();
- }
- }
复制代码 |