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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 虎鹏 中级黑马   /  2015-5-14 22:47  /  539 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  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. }
复制代码

评分

参与人数 1黑马币 +6 收起 理由
xiaodaodan + 6 赞一个!

查看全部评分

1 个回复

倒序浏览
还有字符流处理,特殊处理等等,慢慢添加
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马