J2EE社区

苟有恒,何必三更起五更眠;
最无益,只怕一日曝十日寒.
posts - 241, comments - 318, trackbacks - 0, articles - 16

java 压缩文件 ZipOutputStream 支持中文

Posted on 2009-10-30 22:17 xcp 阅读(2972) 评论(1)  编辑  收藏 所属分类: JAVA
       最近因为项目的需要,要做一个打包下载..而java提供的java.util.zip.*.......对中文不支持...反来到网上看了一下..要修改java的原代码..而无意之间又发现了ant的打包,直接支持中文打包..当时乐得...下面就是一个简单的例子,注 需要导入ant.jar支持包.

      
package cn.edu.cuit.disasterSystem.web.struts2.action;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;

import org.apache.tools.zip.ZipOutputStream;

/**
 * 
 * 
@author xcp
 * 
@version 1.0 Copyright (C), 2009  智能开发实验室 所有 Program Name:灾情信息管理系统
 *          Date: 2009-10-28 下午11:29:42
 
*/
public class CompressToZip {
    
public void zip(String inputFileName) throws Exception {
        String zipFileName 
= "d:\\批量打包.zip";// 打包后文件名字
        System.out.println(zipFileName);
        zip(zipFileName, 
new File(inputFileName));

    }

    
private void zip(String zipFileName, File inputFile)throws Exception {
        ZipOutputStream out 
= new ZipOutputStream(new FileOutputStream(zipFileName));
        zip(out, inputFile, 
"");
        System.out.println(
"zip done");
        out.close();
    }
    

    
private void zip(ZipOutputStream out, File f, String base) throws Exception {
        
if (f.isDirectory()) {
            File[] fl 
= f.listFiles();
            System.out.println(
"新增目录元素   " +base+ "/");
            out.putNextEntry(
new org.apache.tools.zip.ZipEntry(base + "/"));
            base 
= base.length() == 0 ? "" : base + "/";
            
for (int i = 0; i < fl.length; i++) {
                zip(out, fl[i], base 
+ fl[i].getName());
            }
        } 
else {
            System.out.println(
"新增普通文件元素   " +base);
            out.putNextEntry(
new org.apache.tools.zip.ZipEntry(base));
            FileInputStream in 
= new FileInputStream(f);
            
int b;
            
while ((b = in.read()) != -1) {
                out.write(b);
            }
            in.close();
        }
    }

    
public static void main(String[] args) {
        CompressToZip test 
= new CompressToZip();
        
try {
            test.zip(
"d:\\temp");
        } 
catch (Exception e) {
            e.printStackTrace();
        }
    }
}

     
        


名称: ♪4C.ESL | .↗Evon
口号: 遇到新问题♪先要寻找一个方案乄而不是创造一个方案こ
mail: 联系我


Feedback

# re: java 压缩文件 ZipOutputStream 支持中文  回复  更多评论   

2011-08-31 15:41 by qwe
asdsad

只有注册用户登录后才能发表评论。


网站导航: