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

java基础入门-ZipOutputStream打包下载

时间:2015-07-09 11:19:00      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:   打包   zipoutputstream   

今天跟大家聊聊使用ZipOutputStream打包下载,我下面是使用ant的jar打包的,因为他对应中文的支持比较好

大家也可以使用java.util.zip包里面的工具类打包,但是他对于中文不友好,很多都是乱码的(包括注释、文件名、打包名)



import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipOutputStream;


/**
	 * 打包下载
	 * 
	 * @param response
	 */
	private void downFile(HttpServletResponse resp,
			ArrayList<String> filePathList) throws ServletException,
			IOException {
		// 头文件
		resp.setContentType("APPLICATION/OCTET-STREAM");
		resp.setHeader("Content-Disposition",
				"attachment; filename=" + this.getZipFilename());

		// 压缩文件
		ZipOutputStream zos = new ZipOutputStream(resp.getOutputStream());
		// --拼装
		ArrayList<File> fileList = new ArrayList<File>();
		for (int i = 0; i < filePathList.size(); i++) {
			File file = new File(filePathList.get(i));
			fileList.add(file);
		}
		File[] files = fileList.toArray(new File[fileList.size()]);
		// --打包
		zipFile(files, "", zos);

		zos.flush();
		zos.close();
	}
/**
	 * 打包文件
	 * 
	 * @param subs
	 *            文件数组
	 * @param baseName
	 *            自定义名字
	 * @param zos
	 *            输出流
	 * @throws IOException
	 */
	private void zipFile(File[] subs, String baseName, ZipOutputStream zos)
			throws IOException {
		for (int i = 0; i < subs.length; i++) {
			File f = subs[i];
			zos.putNextEntry(new ZipEntry(baseName + f.getName()));
			FileInputStream fis = new FileInputStream(f);
			byte[] buffer = new byte[1024];
			int r = 0;
			while ((r = fis.read(buffer)) != -1) {
				zos.write(buffer, 0, r);
			}
			fis.close();
		}
	}

	/**
	 * 压缩包名字
	 * 
	 * @return
	 */
	private String getZipFilename() {
		Date date = new Date();
		String s = date.getTime() + ".zip";
		return s;
	}



版权声明:本文为博主原创文章,未经博主允许不得转载。

java基础入门-ZipOutputStream打包下载

标签:   打包   zipoutputstream   

原文地址:http://blog.csdn.net/raylee2007/article/details/46812699

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