javaWeb后端下载磁盘文件
Posted 张文琪2022
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javaWeb后端下载磁盘文件相关的知识,希望对你有一定的参考价值。
@RequestMapping(value = "/download")
public void queryByDictType(HttpServletRequest request, HttpServletResponse response)
String pathStr = request.getParameter("path")//文件路径
response.addHeader("Content-type", "appllication/octet-stream");//下载标识
response.addHeader("Content-Disposition", "attachment;filename="+pathStr);下载标识
try (InputStream in = new FileInputStream(fileName);
OutputStream out = response.getOutputStream())
int i;
while ((i = in.read()) != -1)
out.write(i);
catch (Exception e)
以上是关于javaWeb后端下载磁盘文件的主要内容,如果未能解决你的问题,请参考以下文章
JAVAWEB学习笔记29_文件的上传------commons-fileupload