Java一括ファイルパッケージダウンロード


複数のファイルを選択して一括ダウンロードする場合、選択したすべてのファイルを1つのzipファイルに生成してからダウンロードすることができます.このzipファイルは、一括ダウンロードを実現することができますが、パッケージ化の過程で、ダウンロードしたzipファイルの中に文字化けのファイル名が表示されることがよくあります.エンコーディングの設定はant.jarのorg.apache.tools.zipのZipOutPutStreamを使用して行います.
コードは次のとおりです.
antパッケージ参照

		<dependency>
		  <groupId>ant</groupId>
		  <artifactId>ant</artifactId>
		  <version>1.6.5</version>
		</dependency>	

ダウンロードしたactionコードを圧縮

package demo.action;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
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.net.URLEncoder;

import javax.servlet.http.HttpServletResponse;

import org.apache.log4j.Logger;
import org.apache.struts2.ServletActionContext;
import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipOutputStream;

import com.opensymphony.xwork2.ActionSupport;

/**
 *       :
 *     ant.jar   org.apache.tools.zip.*    ,
 * java    java.util.zip.*            
 *              
 * @author yangcong
 * 
 */
public class BatchDownloadAction extends ActionSupport {

	private Logger Log = Logger.getLogger(BatchDownloadAction.class);
	private static final String FilePath = "D:\\";

	private static final long serialVersionUID = -8694640030455344419L;

	public String execute() {
		//   ZIP    Demo.zip
		String tmpFileName = "Demo.zip";
		byte[] buffer = new byte[1024];
		String strZipPath = FilePath + tmpFileName;
		try {
			ZipOutputStream out = new ZipOutputStream(new FileOutputStream(
					strZipPath));
			//            result.txt ,source.txt
			File[] file1 = { new File(FilePath+"test1.txt"),
					new File(FilePath+"  2.docx") };
			for (int i = 0; i < file1.length; i++) {
				FileInputStream fis = new FileInputStream(file1[i]);
				out.putNextEntry(new ZipEntry(file1[i].getName()));
				//            ,       
				out.setEncoding("GBK");
				int len;
				//             ,   zip  
				while ((len = fis.read(buffer)) > 0) {
					out.write(buffer, 0, len);
				}
				out.closeEntry();
				fis.close();
			}
			out.close();
			this.downFile(getResponse(), tmpFileName);
		} catch (Exception e) {
			Log.error("      ", e);
		}
		return null;
	}

	/**
	 *   Response
	 * @return
	 */
	private HttpServletResponse getResponse() {
		return ServletActionContext.getResponse();
	}

	/**
	 *     
	 * @param response
	 * @param str
	 */
	private void downFile(HttpServletResponse response, String str) {
		try {
			String path = FilePath + str;
			File file = new File(path);
			if (file.exists()) {
				InputStream ins = new FileInputStream(path);
				BufferedInputStream bins = new BufferedInputStream(ins);//        
				OutputStream outs = response.getOutputStream();//       IO 
				BufferedOutputStream bouts = new BufferedOutputStream(outs);
				response.setContentType("application/x-download");//   response     
				response.setHeader(
						"Content-disposition",
						"attachment;filename="
								+ URLEncoder.encode(str, "UTF-8"));//       
				int bytesRead = 0;
				byte[] buffer = new byte[8192];
				//           
				while ((bytesRead = bins.read(buffer, 0, 8192)) != -1) {
					bouts.write(buffer, 0, bytesRead);
				}
				bouts.flush();//        flush()  
				ins.close();
				bins.close();
				outs.close();
				bouts.close();
			} else {
				response.sendRedirect("../error.jsp");
			}
		} catch (IOException e) {
			Log.error("      ", e);
		}
	}
}


  Windows環境でテストに合格し、struts 2を使用します.