拷贝 ioutils linux,使用Apache的IOUtils实现文件下载
/**
* 下載模板文件
* @param filename 要下載的文件在工程中的路徑,如/template/userTemplate.xls
*/
@RequestMapping("/common/downloadtemplatefile")
public void downloadTemplateFile(String filename, HttpServletResponse response,
HttpServletRequest request) {
LOGGER.info("【下載模板文件】filename : " + filename);
if (StringUtils.isNotBlank(filename)) {
LOGGER.warn("【模板文件路徑為空】");
throw new RuntimeException("模板文件路徑為空");
}
// 截取后綴名
int lastIndexOfPoint = filename.lastIndexOf(".");
String suffix = filename.substring(lastIndexOfPoint);
// 需要下載的文件
String filepath = request.getSession().getServletContext().getRealPath(filename);
File myfile = new File(filepath);
// 清空response
response.reset();
// 設(shè)置response的Header
response.addHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(filename+ suffix, "UTF-8"));
response.addHeader("Content-Length", "" + myfile.length());
response.setContentType("application/octet-stream");
OutputStream toClient = null;
InputStream fis = null;
//打開文件輸入流 和 servlet輸出流
try {
toClient = new BufferedOutputStream(response.getOutputStream());
fis = new BufferedInputStream(new FileInputStream(myfile));
//通過ioutil 對接輸入輸出流,實(shí)現(xiàn)文件下載
IOUtils.copy(fis, toClient);
toClient.flush();
} catch (Exception e) {
LOGGER.error("【文件下載失敗】", e);
throw new RuntimeException("文件下載失敗");
} finally {
//關(guān)閉流
IOUtils.closeQuietly(fis);
IOUtils.closeQuietly(toClient);
}
}
總結(jié)
以上是生活随笔為你收集整理的拷贝 ioutils linux,使用Apache的IOUtils实现文件下载的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: linux 更改 引导分区,Linux系
- 下一篇: 双系统隐藏d盘linux,如何实现双系统