文件下载 Bertha 。 2022-08-06 15:29 136阅读 0赞 下载图片或者文件有那么几种方法,下面详细总结。 1,js方法 function downloadFile(url){ var elemIF = document.createElement("iframe"); elemIF.src = url; elemIF.style.display = "none"; document.body.appendChild(elemIF); } 直接在js中调用这个方法就可以实现下载,下载文件显示在浏览器下面。 不过这种实现方法有一个问题,单纯的一个jsp页面或者html页面,直接使用这个方法是没有问题的,但是在程序开发的过程中往往就不那么单纯,大多是在弹出框中嵌套页面,如果下载方法在这个嵌套的页面中就可能会出现问题,可能会出现文件不下载,但是后台和浏览器中都没有报错,就是不下载。 出现这个原因就是下载页面嵌套过来后不是在iframe中。最简单的解决方法就是嵌套页面的时候用iframe,不过这种也不简单,如果用弹出框的形式的话,就麻烦至极了,不过还好,还有其他的方法实现下载。 2,js+后台 js: //下载图片 function downloadFileT(path, fname){ $('#fileDownFrame').form('submit', { url :'<%=request.getContextPath()%>/down/downLoadFile.action?filename='+encodeURI(encodeURI(fname))+'&filePath='+encodeURI(encodeURI(path)), dataType : 'text/xml', async:false, success : function(data) { 。。。。。 } }); } html: <form id="fileDownFrame" style="display:none; visibility:hidden;" method="post"></form> action: /** * 下载附件 * @param request * @param response * @throws UnsupportedEncodingException * @throws IOException */ @Action("downLoadFile") public void downLoadFile() throws IOException { HttpServletRequest request=ServletActionContext.getRequest(); HttpServletResponse response=ServletActionContext.getResponse(); //response.setContentType("text/Xml;charset=utf-8"); response.setContentType("application/octet-stream"); JSONObject json=new JSONObject(); try{ String path= URLDecoder.decode(request.getParameter("filePath"),"utf-8");//从页面获取要下载的文件的相对路径 String filename= URLDecoder.decode(request.getParameter("filename"),"utf-8"); if(!"".equals(path)){ path=path.replaceAll("\\\\", "/"); File file=new File(request.getSession() .getServletContext().getRealPath("/")+path);//构造要下载的文件 if(file.exists()){ InputStream ins=new FileInputStream(file);//构造一个读取文件的IO流对象 BufferedInputStream bins=new BufferedInputStream(ins);//放到缓冲流里面 OutputStream outs=response.getOutputStream();//获取文件输出IO流 BufferedOutputStream bouts=new BufferedOutputStream(outs); response.setContentType("application/x-msdownload");//设置response内容的类型 response.addHeader("Content-Length", "" + file.length()); response.setHeader("Content-disposition","attachment;filename="+ new String( filename.getBytes("gb2312"), "ISO8859-1" ));//设置头部信息 int bytesRead = 0; int size=(int)file.length(); byte[] buffer = new byte[size]; //开始向网络传输文件流 while ((bytesRead = bins.read(buffer, 0, buffer.length)) != -1) { bouts.write(buffer, 0, bytesRead); } bouts.flush();//这里一定要调用flush()方法 ins.close(); bins.close(); outs.close(); bouts.close(); // json.put("result", "success"); }else{ response.reset(); json.put("result", "none"); response.getWriter().print(json.toString()); System.out.println("下载的文件不存在"); } }else{ json.put("result", "wrong"); response.getWriter().print(json.toString()); System.out.println("下载文件时参数错误"); } }catch (Exception e) { json.put("result", "error"); response.getWriter().print(json.toString()); e.printStackTrace(); } }
相关 文件下载 String filePath = wenjianService.getlujing(attachId); String fileName= wenjian 川长思鸟来/ 2022年08月23日 00:52/ 0 赞/ 33 阅读
相关 文件下载 下载图片或者文件有那么几种方法,下面详细总结。 1,js方法 function downloadFile(url){ var elemIF Bertha 。/ 2022年08月06日 15:29/ 0 赞/ 137 阅读
相关 文件下载 对应文件上传的下载 1、javaweb方法实现: public String download(){ try { //获取文件ID ゝ一世哀愁。/ 2022年07月13日 14:08/ 0 赞/ 240 阅读
相关 下载文件 //设置文件MIME类型 response.setContentType(getServletContext().getMimeType(f 浅浅的花香味﹌/ 2022年06月17日 05:44/ 0 赞/ 219 阅读
相关 文件下载 下载就是向客户端响应字节数据,原来响应的都是html的字符数据,现在 把一个文件变成字节数组,使用response.getOutputStream()来各应给浏览器! 下载 - 日理万妓/ 2022年06月10日 03:10/ 0 赞/ 163 阅读
相关 文件下载 导入jar commons-fileupload-1.3.1.jar commons-io-2.2.jar 在jsp中添加超链接,设置要下载的文件 叁歲伎倆/ 2022年05月06日 10:44/ 0 赞/ 230 阅读
相关 文件下载 html 标签 点击自动下载 <button> <a href = "http://localhost/day.zip"> 布满荆棘的人生/ 2022年03月18日 13:56/ 0 赞/ 540 阅读
相关 下载文件 import javax.servlet.http.HttpServletResponse; import java.io.BufferedOutputStre 骑猪看日落/ 2022年01月11日 02:57/ 0 赞/ 298 阅读
相关 文件下载 ![在这里插入图片描述][watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ub 川长思鸟来/ 2021年12月15日 00:53/ 0 赞/ 361 阅读
还没有评论,来说两句吧...