怎样用Java生成ZIP文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样用Java生成ZIP文件相关的知识,希望对你有一定的参考价值。
我想做个读取txt文件,并生成zip的功能,有没哪位高人提供下相关代码.比如我要读取f:/sql.txt文件,并把他压缩成zip格式,保存成f:/outfile.zip.
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipOutputStream;
/**
* @project: Test
* @author chenssy
* @date 2013-7-28
* @Description: 文件压缩工具类
* 将指定文件/文件夹压缩成zip、rar压缩文件
*/
public class CompressedFileUtil
/**
* 默认构造函数
*/
public CompressedFileUtil()
/**
* @desc 将源文件/文件夹生成指定格式的压缩文件,格式zip
* @param resourePath 源文件/文件夹
* @param targetPath 目的压缩文件保存路径
* @return void
* @throws Exception
*/
public void compressedFile(String resourcesPath,String targetPath) throws Exception
File resourcesFile = new File(resourcesPath); //源文件
File targetFile = new File(targetPath); //目的
//如果目的路径不存在,则新建
if(!targetFile.exists())
targetFile.mkdirs();
String targetName = resourcesFile.getName()+".zip"; //目的压缩文件名
FileOutputStream outputStream = new FileOutputStream(targetPath+"\\\\"+targetName);
ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(outputStream));
createCompressedFile(out, resourcesFile, "");
out.close();
/**
* @desc 生成压缩文件。
* 如果是文件夹,则使用递归,进行文件遍历、压缩
* 如果是文件,直接压缩
* @param out 输出流
* @param file 目标文件
* @return void
* @throws Exception
*/
public void createCompressedFile(ZipOutputStream out,File file,String dir) throws Exception
//如果当前的是文件夹,则进行进一步处理
if(file.isDirectory())
//得到文件列表信息
File[] files = file.listFiles();
//将文件夹添加到下一级打包目录
out.putNextEntry(new ZipEntry(dir+"/"));
dir = dir.length() == 0 ? "" : dir +"/";
//循环将文件夹中的文件打包
for(int i = 0 ; i < files.length ; i++)
createCompressedFile(out, files[i], dir + files[i].getName()); //递归处理
else //当前的是文件,打包处理
//文件输入流
FileInputStream fis = new FileInputStream(file);
out.putNextEntry(new ZipEntry(dir));
//进行写操作
int j = 0;
byte[] buffer = new byte[1024];
while((j = fis.read(buffer)) > 0)
out.write(buffer,0,j);
//关闭输入流
fis.close();
public static void main(String[] args)
CompressedFileUtil compressedFileUtil = new CompressedFileUtil();
try
compressedFileUtil.compressedFile("G:\\\\zip", "F:\\\\zip");
System.out.println("压缩文件已经生成...");
catch (Exception e)
System.out.println("压缩文件生成失败...");
e.printStackTrace();
运行程序结果如下:
压缩之前的文件目录结构:
如果是使用java.util下的java.util.zip进行打包处理,可能会出现中文乱码问题,这是因为java的zip方法不支持编码格式的更改,我们可以使用ant.java下的zip工具类来进行打包处理。所以需要将ant.jar导入项目的lib目录下。
参考技术A 不能在程序里面直接压缩成.zip文件,只能读取TXT,然后自己打包成.zip,eclipse和myeclipse只提供了程序里面打包成.jar文件。只要读取txt文件你再百度一下,很多。。 参考技术B 你读取之后用ZipOutStream吧,这个生成ZIP压缩文件。 参考技术C //读取需要压缩文件 也可以修改成f:/sql.txt
File souceFile = new File("D:\\sql.txt") ;
//生成写入压缩文件
ZipOutputStream out = new ZipOutputStream(new FileOutputStream("D:\\outfile.zip"));
out.putNextEntry(new ZipEntry(souceFile.getName()));
FileInputStream in = new FileInputStream(souceFile);
int b;
byte[] by = new byte[1024];
while ((b = in.read(by)) != -1)
//将需要压缩文件数据写到压缩文件中
out.write(by, 0, b);
in.close();
out.close() ; 参考技术D 参考
http://zhidao.baidu.com/question/296572479.html
以上是关于怎样用Java生成ZIP文件的主要内容,如果未能解决你的问题,请参考以下文章
问题一:java怎样限制导出的csv文件大小,csv文件导出里面行数大于5000条则分为多个csv文件。