黑马程序员技术交流社区

标题: 拷贝文件练习代码 [打印本页]

作者: iFmmer    时间: 2015-6-18 21:49
标题: 拷贝文件练习代码
  1. import java.io.FileReader;
  2. import java.io.FileWriter;
  3. import java.io.IOException;

  4. //将文件从一个地方拷贝到另一个地方
  5. public class fileCopy {
  6.         public static void main(String args[]){
  7.                 FileReader fr = null;
  8.                 FileWriter fw = null;
  9.                 char[] temp = new char[1024];
  10.                 int num = 0;
  11.                 try {
  12.                         fr = new FileReader("D:\\test.java");
  13.                         fw = new FileWriter("c:\\test.java");
  14.                         while ((num = fr.read(temp))!=-1){
  15.                                 fw.write(temp,0,num);
  16.                                 num = fr.read(temp);
  17.                         }
  18.                        
  19.                 } catch (IOException e) {
  20.                         e.printStackTrace();
  21.                 } finally{
  22.                         try {
  23.                                 if(fr!=null)
  24.                                         fr.close();
  25.                         } catch (IOException e) {
  26.                                 // TODO Auto-generated catch block
  27.                                 e.printStackTrace();
  28.                         }
  29.                         try{
  30.                                 if(fw!=null)
  31.                                         fw.close();
  32.                         } catch(IOException e){
  33.                                 e.printStackTrace();
  34.                         }
  35.                 }

  36.         }
  37. }
复制代码







欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2