码迷,mamicode.com
首页 > 编程语言 > 详细

关于使用java自带ZipOutputStream压缩文件名为中文的乱码问题

时间:2015-03-29 19:36:32      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:乱码   apache   压缩文件   java6   

摘要
由于业务要求,会对文件系统中部分文件处理打包操作,开始我使用java6自带的api处理,当文件名中带有中时,打包之后的压缩文件会产生中文乱码的问题,后听说java7解决了这一问题,因行业的滞后性我没有做这样的尝试,有兴趣的读者可以自己研究一下。下面提供我的一个解决方案(apache下文件流工具)。

//部分包引入样例
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;

import org.apache.log4j.Logger;
import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipFile;
import org.apache.tools.zip.ZipOutputStream;
public class ZipUtil {
    private static final Logger logger = Logger.getLogger(ZipUtil.class);

    /** 
     * 功能:压缩多个文件成一个zip文件 
     * @param srcfile:源文件列表 
     * @param zipfile:压缩后的文件 
     */  
    public static boolean zipFiles(File[] srcfile,File zipfile){  
        boolean reFlag = false;
        byte[] buf=new byte[10240];  
        ZipOutputStream out = null;
        FileInputStream in = null;
        try {  
            //ZipOutputStream类:完成文件或文件夹的压缩  
            out=new ZipOutputStream(new FileOutputStream(zipfile));  
            //注意此处编码设置
            out.setEncoding("gbk");
            for(int i=0;i<srcfile.length;i++){  
                in=new FileInputStream(srcfile[i]);  
                out.putNextEntry(new ZipEntry(srcfile[i].getName()));  
                int len;  
                while((len=in.read(buf))>0){  
                    out.write(buf,0,len);  
                }  
                out.closeEntry();  
                in.close();  
                in = null;
            }  
            out.close();  
            out = null;
            reFlag = true;
            logger.info("压缩完成,文件详细信息为:"+zipfile.getAbsolutePath());
        } catch (Exception e) {  
            e.printStackTrace();  
        } finally{
            if(in!=null){
                try {
                    in.close();
                    in = null;
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if(out!=null){
                try {
                    out.close();
                    out = null;
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        } 
        return reFlag;
    }  
  }

关于使用java自带ZipOutputStream压缩文件名为中文的乱码问题

标签:乱码   apache   压缩文件   java6   

原文地址:http://blog.csdn.net/cqstart116/article/details/44728821

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!