黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

前端ajax請(qǐng)求+后端java實(shí)現(xiàn)的下載zip壓縮包功能示例

ajax請(qǐng)求 下載zip壓縮包

后臺(tái)最主要是 response.setcontenttype(“application/octet-stream”);
以及 response.addheader(“content-disposition”, “attachment;filename=” + urlencoder.encode(“圖片.zip”, “utf-8”));

一、后臺(tái)代碼

@postmapping("/downloadzip")
    public void downloadcerts(httpservletrequest request, httpservletresponse response, @requestbody list<string> ids) throws unsupportedencodingexception {
    	//文件流octet-stream
        response.setcontenttype("application/octet-stream");
        response.setcharacterencoding("utf-8");
        response.addheader("content-disposition", "attachment;filename=" + urlencoder.encode("圖片.zip", "utf-8"));
        try {
            zipoutputstream resultstream = new zipoutputstream(response.getoutputstream());
			// 這里是查詢數(shù)據(jù)庫
            list<map> result = service.downloadcerts(ids);
            byte[] buffer = new byte[10240];
            for (map map :result) {
            	//因?yàn)閿?shù)據(jù)庫保存的是圖片的base64 所以需要轉(zhuǎn)換
                base64decoder decoder = new base64decoder();
                file certface = new file("temp.png");
                outputstream out = new fileoutputstream(certface);
                byte[] b = decoder.decodebuffer(((string) map.get("certb64")).split(",")[1]);
                for (int i = 0; i <b.length ; i++) {
                    if (b[i] <0) {
                        b[i]+=256;
                    }
                }
                out.write(b);
                out.flush();
                out.close();
                //到這里 base64 轉(zhuǎn)換成了圖片
				//往zip里面壓入第一個(gè)文件  本地文件
                resultstream.putnextentry(new zipentry("本地圖片.png" ));
                inputstream stream = new fileinputstream(new file("temp.png"));
                int len;
                // 讀入需要下載的文件的內(nèi)容,打包到zip文件
                while ((len = stream.read(buffer)) > 0) {
                    resultstream.write(buffer, 0, len);
                }
                resultstream.closeentry();
                stream.close();
                resultstream.flush();
                //第一個(gè)文件壓入完成 關(guān)閉流 刷新一下緩沖區(qū)
                // 往zip里面壓入第二個(gè)文件  網(wǎng)絡(luò)文件 例:https://profile.csdnimg.cn/8/c/e/3_blogdevteam
                resultstream.putnextentry(new zipentry("網(wǎng)絡(luò)圖片.png"));
                url url = new url("https://profile.csdnimg.cn/8/c/e/3_blogdevteam";);
                string str = url.tostring();
                urlconnection connection = url.openconnection();
                inputstream backstream = connection.getinputstream();
                // 讀入需要下載的文件的內(nèi)容,打包到zip文件
                while ((len = backstream.read(buffer)) > 0) {
                    resultstream.write(buffer, 0, len);
                }
                resultstream.closeentry();
                backstream.close();
                resultstream.flush();
				//第二個(gè)文件壓入完成 關(guān)閉流 刷新一下緩沖區(qū)
            }
            resultstream.close();
            //關(guān)閉流
        } catch (ioexception e) {
            e.printstacktrace();
        }
    }

二、前端代碼

前端代碼比較簡單 直接貼出 我使用的是vue的 axios

download(this.ids).then((response) =>{
	if (response.status == 200) {
	    let url = window.url.createobjecturl(new blob([response.data]))
	    let link= document.createelement('a')
	    link.style.display='none'
	    link.href=url
	    link.setattribute('download', "圖片.zip")    // 自定義下載文件名(如exemple.txt)
	    document.body.appendchild(link)
	    link.click()
	}else{
	    this.$message.error("下載出錯(cuò)了");
	}
});

這里的 download(this.ids) 是封裝過的axios 重點(diǎn)是 then里的代碼

問題

如果你發(fā)現(xiàn)下載的文件比源文件大,很可能是前端請(qǐng)求需要加入以下代碼

responsetype:'blob',

注意:筆者在測試過程中發(fā)現(xiàn)一些網(wǎng)站帶有防盜鏈功能,需要referer驗(yàn)證。另外還可能會(huì)出現(xiàn)前端blob格式轉(zhuǎn)換、跨域等諸多問題 ,需要讀者酌情處理。

相關(guān)文章