- File f = new File("E:\\no.txt");
- File f1 = new File("E:\\no.java");
- f.renameTo(f1);
[color=rgb(177, 8, 0) !important]复制代码
用这代码把.txt改成.java是成功的,而用下面代码
- File f = new File("E:\\no.java");
- File f1 = new File("E:\\no.txt");
- f.renameTo(f1);
[color=rgb(177, 8, 0) !important]复制代码
把.java文件改成.txt不成功,为什么呢?求帮助。
之前问过,也有好多回复,与文件的no.txt无关,只是贴代码里出错了,求高手帮解决此问题 |
|
|