- public class test {
- public static void main(String[] args) throws Exception {
-
- }
-
- //从c盘读一个字符,就往D盘写一个字符。
- public static void copy_1() throws IOException{
- //创建目的地。
- FileWriter fw = new FileWriter("e:\\demo1.txt");
-
- //与已有的文件关联。
- FileReader fr = new FileReader("e:\\demo.java");
-
- int ch = 0;
- while((ch=fr.read())!=-1){
- sop(ch);
- fw.write(ch);
- }
-
- fw.close();
- fr.close();
- }
-
- public static void sop(Object obj){
- System.out.println(obj);
- }
- }
复制代码
代码如上,为什么我的代码进行不了复制的操作…… |
|