首页 javaWEB java 文件打包下载

java 文件打包下载

import java.io.File; import java.io.FileInputStream; import …

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

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

import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipOutputStream;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/**
 * 报告管理--- 需要上传的文件
 * @author lyq
 *
 */
@Controller
@RequestMapping("/files")
public class FilesController {




	/**
	 * 下载 报告资料(这个需要打包下载所有的 所以单独列出来)
	 * 这个路径还没有改动
	 * @param request
	 * @param response
	 * @param reportId
	 * @return
	 * @throws IOException
	 */
	@RequestMapping(value="/downReport")
	public String downReport(HttpServletRequest request,HttpServletResponse response) throws IOException{



		    String tmpFileName = "ceshi.zip";
	        byte[] buffer = new byte[1024];

	        String strZipPath ="D://"+tmpFileName;

	        try {
	            ZipOutputStream out = new ZipOutputStream(new FileOutputStream(
	                    strZipPath));
	            // 需要同时下载的两个文件a.txt ,b.txt
	            String []filePath={"D://conf.xml","D://login.htm"};
	            File[] file1 =new File[filePath.length] ;
	            for(int i=0;i<filePath.length;i++){
	            	file1[i]=new File(filePath[i]);
	            }


	            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.downloadFile(strZipPath,response);
	        } catch (Exception e) {
	         e.printStackTrace();
	        }
	        return null;
	}



    public void downloadFile(String fileName,HttpServletResponse response){
        response.setCharacterEncoding("utf-8");
        response.setContentType("multipart/form-data");

        response.setHeader("Content-Disposition", "attachment;fileName=report.zip");
        try {
            File file=new File(fileName);
            System.out.println(file.getAbsolutePath());
            InputStream inputStream=new FileInputStream(file);
            OutputStream os=response.getOutputStream();
            byte[] b=new byte[1024];
            int length;
            while((length=inputStream.read(b))>0){
                os.write(b,0,length);
            }
            inputStream.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }



}

 

免责声明:文章内容不代表本站立场,本站不对其内容的真实性、完整性、准确性给予任何担保、暗示和承诺,仅供读者参考,文章版权归原作者所有。如本文内容影响到您的合法权益(内容、图片等),请及时联系本站,我们会及时删除处理。

为您推荐

nodejs 整理记录

nodejs 整理记录

下载包 https://blog.csdn.net/m0_59878114/article/details/120274...
websocket测试html

websocket测试html

<!DOCTYPE html> <html> <head> <meta cha...
bigdemical两个数比较大小

bigdemical两个数比较大小

/*int result = bigdemical1.compareTo(bigdemical2) result = -...
Beetl2.7 中文文档

Beetl2.7 中文文档

Beetl目前版本是2.7.23,相对于其他java模板引擎,具有功能齐全,语法直观,性能超高,以及编写的模板容易维护等...
纯CSS实现多个便签在一行展示,拖动滚动

纯CSS实现多个便签在一行展示,拖动滚动

div <h2>请注意需要在移动端预览,PC端拖拽无效果</h2> <div class=...
返回顶部