赞
踩
- import java.io.IOException;
- import java.nio.file.Files;
- import java.nio.file.Path;
- import java.nio.file.Paths;
- import javax.servlet.ServletException;
- import javax.servlet.http.HttpServlet;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
-
- public class MyServlet extends HttpServlet {
- protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- // 获取文件路径
- String filePath = "/path/to/file.txt";
- Path path = Paths.get(filePath);
- // 检查文件是否存在
- if (!Files.exists(path)) {
- response.sendError(HttpServletResponse.SC_NOT_FOUND);
- return;
- }
- // 设置响应类型
- response.setContentType("application/octet-stream");
- response.setHeader("Content-Disposition", "attachment;filename=" + path.getFileName());
- // 获取文件内容流并写入响应
- Files.copy(path, response.getOutputStream());
- }
- }
在上面的 Servlet 中,首先需要获取要返回的文件路径,然后检查文件是否存在。如果文件不存在,返回 HttpServletResponse.SC_NOT_FOUND
响应代码;否则,设置 HTTP 响应类型为 application/octet-stream
,并且设置响应头 Content-Disposition
为 attachment
,这样浏览器会自动弹出文件下载对话框。 最后,将文件的内容流写入 HTTP 响应输出流中,以返回给前端。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。