java代碼文件下載實現
來源:程序員人生 發布時間:2016-04-08 08:47:07 閱讀次數:2458次
java代碼:
@RequestMapping(value = "/download")
@ResponseBody
public void download(HttpServletRequest request,
HttpServletResponse response) throws FileNotFoundException {
//獲得
服務器端文件保存路徑
String realPath = request.getSession().getServletContext().getRealPath("/");
String path = realPath+"文件.txt";
//下載
try {
// path是指欲下載的文件的路徑。
File file = new File(path);
// 獲得文件名。
String filename = file.getName();
// 獲得文件的后綴名。
String ext = filename.substring(filename.lastIndexOf(".") + 1).toUpperCase();
// 以流的情勢下載文件。
InputStream fis = new BufferedInputStream(new FileInputStream(path));
byte[] buffer = new byte[fis.available()];
fis.read(buffer);
fis.close();
// 清空response
response.reset();
// 設置response的Header
response.addHeader("Content-Disposition", "attachment;filename=" + new String(filename.getBytes("gb2312"),"ISO8859⑴"));
response.addHeader("Content-Length", "" + file.length());
OutputStream toClient = new BufferedOutputStream(response.getOutputStream());
response.setContentType("application/octet-stream");
toClient.write(buffer);
toClient.flush();
toClient.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
要求方法:
window.location.href = encodeURI("forecast/download");
這樣不用使用a標簽來要求 直接在js中調用便可
生活不易,碼農辛苦
如果您覺得本網站對您的學習有所幫助,可以手機掃描二維碼進行捐贈