当前位置:首页 » 《资源分享》 » 正文

Java使用流实现浏览器自动下载文件(附前端请求代码)

13 人参与  2024年10月27日 10:41  分类 : 《资源分享》  评论

点击全文阅读


一、注意事项

1.需要注意后端的响应头设置,告诉浏览器下载文件类型(Content-Type)以及文件名称。

2.不同环境下中文路径以及文件名会出现乱码情况

路径解决:

filePath = new String((filePath).getBytes("ISO8859-1"),"UTF-8");

文件名解决:

response.setHeader("Content-Disposition","attachment;filename"+java.net.URLEncoder.encode(fileName,"UTF-8"));

response.setHeader("Content-Disposition",String.format("attachment;filename=\"%s\"",fileName));

3.前端必须使用http请求,而不能使用ajax请求

因为js的ajax函数的返回类型只有xml、text、json、html等类型,没有“流”类型,所以不能够使用相应的ajax函数进行文件下载。但可以用form提交参数,并返回“流”类型的数据。

二、代码

后端:

FileUtil.java

/**@param response 请求的相应*@param fileName 文件名*@param filePath 文件路径*/public void downloadFile(HttpServletResponse response,String fileName,String filePath) throws Exception{    response.setContentType("application/x-msdownload");    response.setHeader("Content-Disposition","attachment;filename"+java.net.URLEncoder.encode(fileName,"UTF-8"));    BufferedInputStream bis = null;    BufferedOutputStream bos = null;    try{        ServletOutputStream output = response.getOutputStream();        bis = new BufferedInputStream(new FileInputStream(filePath));        bos = new BufferedOutputStream(output);        byte[] buff = new byte[2048];        int bytesRead;        while(-1 != (bytesRead = bis.read(buff,0,buff.length))){            bos.write(buff,0,bytesRead);        }    }catch(Exception e){        throw e;    }finally{        if(bis!=null){            bis.close();        }        if(bos!=null){            bos.close();        }    }}

FileController.java

@GetMapping("/download")public void getFile(@RequesParam String fileUrl,HttpServletResponse response) throws Exception{    String fileName = "报告.docx";    downloadFile(response,fileName,fileUrl);}

前端:

前端请求代码

function download(id){var urlStrl ="/download";var inputValue1 = 'xxxx/xxxx.docx'; var form = $('<form></form>');       form.attr('style', 'display:none');        form.attr('target', '_blank');      //设置_blank后,下载会在新窗口打开,同时保留原来的窗口   form.attr('method', 'get');       form.attr('action', urlStrl);var input = $('<input type="text" name="fileUrl" id="param1" />'); input.attr('value', inputValue1); form.append(input);   $(document.body).append(form);  form.submit();    }


点击全文阅读


本文链接:http://zhangshiyu.com/post/178449.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1