<%@ page import="java.io.*" %><% // example: // <a href="download.JSP?path=img/&name=test.gif">download image</a> String root = getServletContext().getRealPath("/"); String path = request.getParameter("path"); String name = request.getParameter("name"); System.out.println(root + path + name);response.setContentType("unknown"); response.addHeader("Content-Disposition", "attachment;filename=\"" + name + "\""); try %> 相关文章: 2021-11-06 2022-12-23 2021-07-10 2022-12-23 2022-12-23 2022-12-23 2021-12-09 2022-12-23