我尝试使用Ajax和jquery下载远程URL下可用的CSV文件(我不想重新加载视图,只想下载文件)。
问题是,该文件根本没有下载,这让我感到困惑。以下是我如何调用应该下载文件的GET端点:
<script>
$("#downloadBtn").click(function() {
$.get("${pageContext.request.contextPath}/download?path="+path);
});
<script>
我的控制器负责处理该请求:
@GetMapping("/download")
public void downloadCsv(HttpServletResponse response, @RequestParam(required = true) String path) {
try {
URL url = new URL(path);
response.setHeader("Content-disposition", "attachment;filename=" + FilenameUtils.getName(url.getPath()));
response.setContentType("text/csv");
InputStream is = url.openStream();
BufferedOutputStream outs = new BufferedOutputStream(response.getOutputStream());
int len;
byte[] buf = new byte[1024];
while ( (len = is.read(buf)) > 0 ) {
outs.write(buf, 0, len);
}
outs.close();
} catch (IOException e) {
e.printStackTrace();
}
}
我的控制器中的代码基本上是指这个SO问题: How to download file from url using Spring MVC?
我只是想知道为什么一旦完成GET请求,我就看不到任何下载的文件了。有什么想法吗?
答案 0 :(得分:0)
我在this SO question找到了对我来说非常好的解决方案(这是Sean Carroll提到的那个)。
<script>
window.location="${pageContext.request.contextPath}/download?path="+path
<script>