- 现在大部分的业务都是需要通过后端下载一些模板,又或者在线浏览的,比例word,excel,pdf文件,都是需要下载,所以这里我也是遇到了,本来是在前端写一个链接,直接下载的,但是以防万一,可以通过后端接口对文档进行下载,下面给出代码例子
- 这里就写一个controller方法,就没有对他进行二次封装了,完全是copy下来的,如果有人看不习惯,可以对他进行二次封装,把他封装成一个工具类
package com.ruoyi.web.controller.ucase;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.util.Map;
/** * * @author Mr.zhou * 公共的controller * * @Description:下载Controller * @Author:Mr.zhou * @Date:2022/07/15 */
@RestController
@RequestMapping("/ucase/download")
@Slf4j
public class UcasePubController {
//文件所在的目录
private static final String FIXED_PATH = "static/documentation/";
private static final String USER_AGENT_MSIE = "MSIE";
private static final String USER_AGENT_TRIDENT = "Trident";
@RequestMapping("/template")
@ResponseBody
public void downloadTemplate(@RequestParam Map<String, String> params, HttpServletResponse response, HttpServletRequest request) throws IOException {
log.debug("DownloadController{}==>downloadTemplate()");
InputStream inputStream = null;
OutputStream os = null;
try {
String path = Thread.currentThread().getContextClassLoader()
.getResource("").getPath() + FIXED_PATH + params.get("fileName");
inputStream = new FileInputStream(new File(path));
//假如以中文名下载的话,设置下载文件名称
String filename = params.get("fileName");
// 针对IE或者以IE为内核的浏览器:
String userAgent = request.getHeader("User-Agent");
if (userAgent.contains(USER_AGENT_MSIE) || userAgent.contains(USER_AGENT_TRIDENT)) {
filename = java.net.URLEncoder.encode(filename, "UTF-8");
} else {
// 非IE浏览器的处理:
filename = new String(filename.getBytes("UTF-8"), "ISO-8859-1");
}
//设置文件下载头
response.addHeader("Content-Disposition", String.format("attachment; filename=\"%s\"", filename));
//1.设置文件ContentType类型,这样设置,会自动判断下载文件类型
response.setContentType("multipart/form-data");
response.setCharacterEncoding("UTF-8");
os = response.getOutputStream();
byte[] b = new byte[2048];
int len;
while ((len = inputStream.read(b)) > 0) {
os.write(b, 0, len);
}
} catch (Exception e) {
log.error(e.getMessage());
} finally {
if (os != null) {
try {
os.close();
} catch (Exception e) {
log.error(e.getMessage());
}
}
if (inputStream != null) {
try {
inputStream.close();
} catch (Exception e) {
log.error(e.getMessage());
}
}
}
}
}
- 把文件放在本地的静态资源目录下
- 通过访问本地链接就可以进行访问了:http://localhost:9999/122/ucase/download/template?fileName=document.docx 参数是你的文件名
- 如图
- 后面我会自己把他封装成一个工具类
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/36124.html