日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 运维知识 > linux >内容正文

linux

拷贝 ioutils linux,使用Apache的IOUtils实现文件下载

發(fā)布時(shí)間:2024/9/30 linux 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 拷贝 ioutils linux,使用Apache的IOUtils实现文件下载 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

/**

* 下載模板文件

* @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)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。