java代碼文件下載實現(xiàn)
來源:程序員人生 發(fā)布時間:2016-04-08 08:47:07 閱讀次數(shù):2464次
java代碼:
@RequestMapping(value = "/download")
@ResponseBody
public void download(HttpServletRequest request,
HttpServletResponse response) throws FileNotFoundException {
//獲得
服務(wù)器端文件保存路徑
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();
// 設(shè)置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標(biāo)簽來要求 直接在js中調(diào)用便可
生活不易,碼農(nóng)辛苦
如果您覺得本網(wǎng)站對您的學(xué)習(xí)有所幫助,可以手機掃描二維碼進(jìn)行捐贈