`

org.apache.tools.zip.*和org.apache.commons.httpclient.*实现远程文件打包下载,支持中文文件名

 
阅读更多
package com.kedacom.kdkk.controller.querymanager;

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 java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.UUID;
import java.util.regex.Pattern;
import java.util.zip.CRC32;
import java.util.zip.CheckedOutputStream;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.methods.GetMethod;

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

public class BatchDownload extends HttpServlet {
	
private static List list = new ArrayList();
Date date = null;
private static int BUF_SIZE = 40480;  
private static String ZIP_ENCODEING = "GBK";  


 public BatchDownload() {
  super();
 }

 public void doGet(HttpServletRequest request, HttpServletResponse response)
   throws ServletException, IOException {
	//设置编码
	request.setCharacterEncoding("utf-8");
	date =  new Date();
	//设置下载头信息
	response.setContentType("application/octet-stream");
	response.setHeader("Content-Disposition", "attachment; filename=\""+date.getTime()+".zip\"");
	//要打包下载的图片json参数
  	String cbxStr = request.getParameter("cbxStr");
  	if(cbxStr.length() > 0){
  		cbxStr = cbxStr.substring(0, cbxStr.length()-1);
  		String [] cbxs = cbxStr.split(";");
  	     HttpClient client = new HttpClient();
  	     GetMethod get = null;
		 //创建本地存储文件路径
  	     new File("d:/vehicleImgs/"+date.getTime()+"/").mkdir();
  	     for(int i = 0; i < cbxs.length; i ++){
  	    	 try {   
				 //构建远程服务的图片下载路径
  	    		 String cbxs2 [] = cbxs[i].split("z");
  	    		 String vid = cbxs2[0];
  	    		 String timestamp = cbxs2[1];
  	    		 String imgtype = cbxs2[2].split(",")[0];
  	    		 String imgName = cbxs2[3];
  	    		 imgName = imgName.replace(" ", "_").replace(":", "_");
  	    		 DateFormat format1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
  	    		 Long timeStamp = format1.parse(timestamp).getTime();
  	    		 String imgUrl = getServletContext().getInitParameter("opticmServer");                 
				 //此方法的参数可自行传入,参数值为远程服务的servlet(xxx.do),返回的值为文件流对象
  			     get = new GetMethod(imgUrl+"&contentId="+vid+"&imgType="+imgtype+"&imgOrder=0&timeStamp="+timeStamp);    
  			     int j = client.executeMethod(get);                               
  			     if (200 == j)//是否正确返回                                                    
  			      {                                                               
  			          File storeFile = new File("d:/vehicleImgs/"+date.getTime()+"/"+imgName+".jpg");
  			          FileOutputStream output = new FileOutputStream(storeFile);  
  			          // 得到网络资源的字节数组,并写入文件                        
  			          output.write(get.getResponseBody());                        
  			          output.close();      
  			      }else{                                                               
  			          System.out.println("no pic");                               
  			      }                                                           
  			  } catch ( Exception e ){                                                                   
  			      System.out.println("Exception no pic");                                   
  			  } finally{
  				  get.releaseConnection(); 
  			  }
  	     }
  	   try {
		   //开始压缩下载下来的本机图片
  		  zip("d:\\vehicleImgs\\"+date.getTime()+".zip", new File("d:\\vehicleImgs\\"+date.getTime()+"\\"));
		  //下载zip打包后的文件
  		  FileInputStream fis = new FileInputStream("d:\\vehicleImgs\\"+date.getTime()+".zip"); 
		  	 byte[] bytes=new byte[BUF_SIZE];
		  	 int r = 0;   
		  	 response.flushBuffer();
			 while((r=fis.read(bytes))>0) {
				response.getOutputStream().write(bytes,0,r);
			 }
			 fis.close(); 
			 response.getOutputStream().close();
	} catch (Exception e) {
		e.printStackTrace();
	}  
  	}
 }

 /** 
      * 压缩文件或文件夹 
      *  
      * @param zipFileName 
     * @param inputFile 
     * @throws Exception 
     */  
    public void zip(String zipFileName, File inputFile) throws Exception {  
        // 未指定压缩文件名,默认为"ZipFile"   
        if (zipFileName == null || zipFileName.equals(""))  
            zipFileName = "ZipFile";  
 
        // 添加".zip"后缀   
        if (!zipFileName.endsWith(".zip"))  
        	zipFileName += ".zip";  
  
        // 创建文件夹   
        File f = null;
	    String path = Pattern.compile("[\\/]").matcher(zipFileName).replaceAll(File.separator);  
	    int endIndex = path.lastIndexOf(File.separator);  
	    path = path.substring(0, endIndex);  
	    f = new File(path);
        f.mkdirs();  
        // 开始压缩   
       {  
             ZipOutputStream zos = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(zipFileName)));  
             zos.setEncoding(ZIP_ENCODEING);  
             compress(zos, inputFile, "");
             zos.close();  
         }  
    }  
    /** 
         * 压缩一个文件夹或文件对象到已经打开的zip输出流 <b>不建议直接调用该方法</b> 
         *  
         * @param zos 
         * @param f 
         * @param fileName 
         * @throws Exception 
         */  
        public void compress(ZipOutputStream zos, File f, String fileName) throws Exception {  
            if (f.isDirectory()) {  
                // 压缩文件夹   
               File[] fl = f.listFiles();  
                zos.putNextEntry(new ZipEntry(fileName + "/"));  
                fileName = fileName.length() == 0 ? "" : fileName + "/";  
                for (int i = 0; i < fl.length; i++) {  
                    compress(zos, fl[i], fileName + fl[i].getName());  
                }  
            } else {  
                // 压缩文件   
                zos.putNextEntry(new ZipEntry(fileName));  
                FileInputStream fis = new FileInputStream(f);  
                this.inStream2outStream(fis, zos);  
                zos.flush();
                fis.close();  
                zos.closeEntry();  
            }  
        }  
      
        public void inStream2outStream(InputStream is, OutputStream os) throws IOException {  
            BufferedInputStream bis = new BufferedInputStream(is);  
            BufferedOutputStream bos = new BufferedOutputStream(os);  
            int bytesRead = 0;  
            for (byte[] buffer = new byte[BUF_SIZE]; ((bytesRead = bis.read(buffer, 0, BUF_SIZE)) != -1);) {  
                bos.write(buffer, 0, bytesRead); // 将流写入   
            }  
        }  

 
 public void doPost(HttpServletRequest request, HttpServletResponse response)
   throws ServletException, IOException {
  this.doGet(request, response);
 }
} 


  • ant.jar (1009.8 KB)
  • 下载次数: 101
分享到:
评论
1 楼 sunjunliangsunjun 2012-06-18  
  

相关推荐

    可用org.apache.commons.httpclient-3.1.0.jar.zip

    import org.apache.commons.httpclient.HttpClient; import org.apache.commons.httpclient.HttpException; import org.apache.commons.httpclient.HttpStatus; import org.apache.commons.httpclient.methods....

    org.apache.commons.httpclient 远程下载文件

    Apache Commons HttpClient 是一个Java库,专门用于执行HTTP和HTTPS请求,包括远程文件的下载。这个库为开发者提供了高级HTTP客户端功能,比如支持多种HTTP方法(GET、POST等)、处理Cookies、管理连接池以及进行...

    org.apache.commons.httpclient-3.1.jar

    - `LICENSE.txt`:包含了Apache Commons HttpClient的许可协议,它遵循Apache 2.0许可证,允许免费使用和修改源代码。 - `README.txt`:一般提供了项目的简介和快速入门指南。 - `NOTICE.txt`:通常列出库中可能包含...

    org.apache.commons.httpclient相关架包

    标题中的"org.apache.commons.httpclient相关架包"指的是这个库的一系列组件,主要包含在`httpclient.jar`文件中。这个JAR文件包含了HttpClient库的所有必需类和资源,可以被导入到Java项目中以实现HTTP通信功能。 ...

    org.apache.commons.httpclient相关资源包

    在标题"org.apache.commons.httpclient相关资源包"中,我们可以看出这是关于使用Apache HttpClient进行HTTP通信的知识点。Apache HttpClient库是Apache软件基金会的一个项目,它提供了对HTTP协议的全面支持,包括GET...

    org.apache.commons.httpclient

    `org.apache.commons.httpclient`是该库的核心包,包含了执行HTTP请求、处理响应以及管理连接等所有必要的组件。 在HTTP客户端使用例子中,你可以找到如何利用Apache HttpClient进行各种HTTP操作的代码示例。这些...

    org.apache.commons.lang jar包下载(commons-lang3-3.1.jar)

    org.apache.commons.lang.BitField.class org.apache.commons.lang.BooleanUtils.class org.apache.commons.lang.CharEncoding.class org.apache.commons.lang.CharRange.class org.apache.commons.lang.CharSet...

    org.apache.commons.lang jar包下载

    org.apache.commons.lang.BitField.class org.apache.commons.lang.BooleanUtils.class org.apache.commons.lang.CharEncoding.class org.apache.commons.lang.CharRange.class org.apache.commons.lang.CharSet...

    org.apache.commons.httpclient资源包(4.2)

    这个资源包,"org.apache.commons.httpclient资源包(4.2)",是该库的一个特定版本,即4.2版,提供了对HTTP协议的强大支持,使开发者能够方便地与Web服务器进行交互。 在HttpClient 4.2中,有几个关键知识点值得...

    org.apache.tools.zip

    在Java编程语言中,`org.apache.tools.zip`是Apache Commons Compress库的一部分,它提供了一组API用于处理ZIP文件格式。这个库使得开发者能够方便地创建、读取、修改和解压缩ZIP档案,大大简化了与ZIP文件相关的...

    用org.apache.commons.net.ftp.FTPClient包实现简单文件下载

    在本文中,我们将深入探讨如何使用`org.apache.commons.net.ftp.FTPClient`包来实现简单的文件下载功能。这个过程涉及到几个关键步骤,包括连接到FTP服务器、登录、设置传输模式、下载文件以及断开连接。 首先,你...

    org.apache.commons.httpclient-3.8.0.jar

    org.apache.commons.httpclient-3.8.0.jar包,需要请下载,主要是内部实现客户端编程实例,进而方便自己编程,可下载导入到自己工程里进行安装测试。 第一种解决方法:去maven仓库的对应目录清掉文件夹里面的...

    commons-httpclient-3.1jar包下载

    http://jakarta.apache.org/commons/httpclient/ org.apache.commons.httpclient.URI org.apache.commons.httpclient.Wire org.apache.commons.httpclient.Cookie org.apache.commons.httpclient.Header org.apache.commons...

    org.apache.http.httpentity jar包-系列jar包

    commons-codec-1.9.jar commons-logging-1.2.jar fluent-hc-4.5.3.jar httpclient-4.5.3.jar httpclient-cache-4.5.3.jar httpclient-win-4.5.3.jar httpcore-4.4.6.jar httpmime-4.5.3.jar jna-4.1.0.jar ...

    .org.apache.commons.httpclient-3.1.0.jar

    小贝程序员生活\jar\lib\com.springsource.org.apache.commons.httpclient-3.1.0.jar 小贝程序员生活\jar\lib\com.springsource.org.apache.commons.httpclient-3.1.0.jar 小贝程序员生活\jar\lib\...

    org.apache.poi jar包

    import org.apache.commons.beanutils.PropertyUtilsBean; import org.apache.commons.lang.StringUtils; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFCellStyle; ...

    org.apache.commons jar包

    这个"org.apache.commons.jar"包是Apache Commons项目的一部分,其中包含了该目录下的一系列资源文件,确保了功能的完整性和多样性。 Apache Commons库的核心理念是创建一系列高质量的、独立的、实用的Java类库,...

    org.apache.commons.lang jar下载

    这个`org.apache.commons.lang.jar`文件是该库的一个版本,包含了Lang项目的所有包,使得开发者在处理字符串、日期、数字、反射、比较等方面的工作变得更加便捷高效。以下是关于Apache Commons Lang的一些关键知识点...

Global site tag (gtag.js) - Google Analytics