springmvc 文件下载
<p>@RequestMapping("/download.htm") </p>
public ResponseEntity<byte[]> download(HttpServletRequest request, @RequestParam("fileId") String fileId) throws IOException {
String path="E:\\Users\\xc\\workspace\\ldassetWeb\\WebRoot\\js\\time.js";
File file=new File(path);
HttpHeaders headers = new HttpHeaders();
String fileName=new String("文件.js".getBytes("UTF-8"),"iso-8859-1");
headers.setContentDispositionFormData("attachment", fileName);
headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file), headers, HttpStatus.CREATED);
}
<a href="${ctx}/system/download.htm?fileId=188">下载</a>
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!