A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. package cn.javastudy.p9.io.demo;

  2. import java.io.*;

  3. /*
  4. * 读取源文件
  5. * 把读取的源文件写到目标文件
  6. */
  7. public class CopyExpression {
  8.         public static void main(String[] args) {
  9.                 copyData("d:\\demo.txt","E:\\demo.txt");
  10.         }

  11.         public static void copyData(String res, String des) {
  12.                 FileReader fr = null;
  13.                 FileWriter fw = null;
  14.                 char[] ch = new char[1024];
  15.                 int length = -1;
  16.                 try {
  17.                         fr = new FileReader(res);
  18.                         fw = new FileWriter(des);
  19.                         while ((length = fr.read(ch)) != -1)
  20.                                 fw.write(ch, 0, length);
  21.                         fw.flush();
  22.                 } catch (FileNotFoundException e) {
  23.                         // TODO Auto-generated catch block
  24.                         e.printStackTrace();
  25.                 } catch (IOException e) {
  26.                         e.printStackTrace();
  27.                 } finally {
  28.                         if (fr != null)
  29.                                 try {
  30.                                         fr.close();
  31.                                 } catch (IOException e1) {
  32.                                         // TODO Auto-generated catch block
  33.                                         e1.printStackTrace();
  34.                                 }
  35.                         if (fw != null)
  36.                                 try {
  37.                                         fw.close();
  38.                                 } catch (IOException e1) {
  39.                                         // TODO Auto-generated catch block
  40.                                         e1.printStackTrace();
  41.                                 }
  42.                 }

  43.         }
  44. }
复制代码
复制文件的例子

1 个回复

倒序浏览
{:soso_e179:}赞一个~~~
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马