黑马程序员技术交流社区

标题: IO中的四种复制文件的方法 [打印本页]

作者: 虎鹏    时间: 2015-5-14 22:47
标题: IO中的四种复制文件的方法
  1. package cn.IOtest_4method;

  2. import java.io.BufferedInputStream;
  3. import java.io.BufferedOutputStream;
  4. import java.io.FileInputStream;
  5. import java.io.FileNotFoundException;
  6. import java.io.FileOutputStream;
  7. import java.io.IOException;

  8. public class FourMethodAvi {
  9.         public static void main(String[] args) throws IOException {
  10.                 //method1("20.14_IO.avi", "Copy1.avi");
  11.                 //method2("20.14_IO.avi", "Copy3.avi");
  12.                 //method3("20.14_IO.avi", "Copy3.avi");
  13.                 method4("20.14_IO.avi", "Copy4.avi");
  14.         }
  15.                
  16.                
  17.         private static void method4(String src, String dest) throws IOException {
  18.                 BufferedInputStream bis = new BufferedInputStream(new FileInputStream(src));
  19.                 BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(dest));
  20.                 byte[] bys = new byte[1024];
  21.                 int len = -1;
  22.                 while((len = bis.read(bys)) != -1){
  23.                         bos.write(bys, 0, len);
  24.                 }
  25.                 bos.close();
  26.                 bis.close();
  27.         }


  28.         private static void method3(String src, String dest) throws IOException {
  29.                 FileInputStream bis = new FileInputStream(src);
  30.                 FileOutputStream bos = new FileOutputStream(dest);
  31.                 byte[] bys = new byte[1024];
  32.                 int len = -1;
  33.                 while((len = bis.read(bys)) != -1){
  34.                 bos.write(bys, 0, len);
  35.                 }
  36.                 bis.close();
  37.                 bos.close();
  38.         }

  39.         private static void method2(String src, String dest) throws IOException {
  40.                 BufferedInputStream bis = new BufferedInputStream(new FileInputStream(src));
  41.                 BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(dest));
  42.                 int ch = -1;
  43.                 while((ch = bis.read()) != -1){
  44.                         bos.write(ch);
  45.                 }
  46.                 bis.close();
  47.                 bos.close();
  48.         }

  49.         public static void method1(String src , String dest) throws IOException{       
  50.                 FileInputStream fis = new FileInputStream(src);
  51.                 FileOutputStream fos = new FileOutputStream(dest);
  52.                 int ch = -1;
  53.                 while((ch = fis.read()) != -1){
  54.                         fos.write(ch);
  55.                 }
  56.                 fos.close();
  57.                 fis.close();
  58.         }
  59. }
复制代码

作者: xiaodaodan    时间: 2015-5-16 22:26
还有字符流处理,特殊处理等等,慢慢添加




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