黑马程序员技术交流社区

标题: 如何用IO流实现复制压缩文件? [打印本页]

作者: hhmm665544    时间: 2014-3-8 20:14
标题: 如何用IO流实现复制压缩文件?
  1. import java.io.*;
  2. /*
复制代码


作者: hhmm665544    时间: 2014-3-8 20:16
  1. import java.io.*;

  2. class CopyTest
  3. {
  4.         public static void main(String[] args)throws IOException
  5.         {
  6.                 copyT();
  7.         }
  8.        
  9.         public static void copyT()throws IOException
  10.         {
  11.                         FileReader fr = new FileReader("D:\\guess_1.rar");
  12.                 FileWriter fw = new FileWriter("C:\\guess_1.rar");
  13.                 char[] buf = new char[1024];
  14.                
  15.                 int len = 0;
  16.                 while((len=fr.read(buf))!=-1)
  17.                 {
  18.                        
  19.                         fw.write(new String(buf,0,len));
  20.                         fw.flush();
  21.                 }
  22.                 fw.close();
  23.                 fr.close();
  24.         }
复制代码

作者: hhmm665544    时间: 2014-3-8 20:18
用上面的代码去复制文本是正常的,但是复制压缩文件就会出现损坏的文件.为什么呢?
作者: daoyua    时间: 2014-3-8 20:51
压缩应该是把数据格式改变了吧,流只是读和传递数据,没改变数据格式吧
作者: 老貓钓鱼    时间: 2014-3-8 20:53
本帖最后由 老貓钓鱼 于 2014-3-8 21:41 编辑

用字节流来复制
  1. package com.item.io;

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

  7. public class RarCopyDemo {

  8.         /**
  9.          * @param args
  10.          *
  11.          */
  12.         public static void main(String[] args) {
  13.                
  14.                 BufferedInputStream bis = null;
  15.                 BufferedOutputStream bos = null;
  16.                
  17.                 try{
  18.                         bis = new BufferedInputStream(new FileInputStream("c:\\1.rar"));
  19.                         bos = new BufferedOutputStream(new FileOutputStream("c:\\2.rar"));
  20.                         byte[] buff = new byte[1024];
  21.                         int len = 0;
  22.                         while((len=bis.read(buff)) != -1 ) {
  23.                                 bos.write(buff, 0, len);
  24.                         }
  25.                 }catch(IOException e) {
  26.                        
  27.                 }finally {
  28.                         if(bis != null) {
  29.                                 try {
  30.                                         bis.close();
  31.                                 } catch (IOException e) {
  32.                                         // TODO Auto-generated catch block
  33.                                         throw new RuntimeException("关闭失败");
  34.                                 }
  35.                                
  36.                         }
  37.                         if(bos != null) {
  38.                                 try {
  39.                                         bos.close();
  40.                                 } catch (IOException e) {
  41.                                         // TODO Auto-generated catch block
  42.                                         throw new RuntimeException("关闭失败");
  43.                                 }               
  44.                         }
  45.                 }
  46.         }

  47. }
复制代码



作者: 徐芾清    时间: 2014-3-8 21:08
老貓钓鱼 发表于 2014-3-8 20:53
用字节流来复制

楼上正解




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