获取src-webapp下的文件夹的文件

来源:互联网 发布:来自mac的照片怎么删除 编辑:程序博客网 时间:2024/06/10 00:42

public void downloadFile(HttpServletRequest request,HttpServletResponse response,HttpSession session) throws Exception {
String url = session.getServletContext().getRealPath(“/”)+File.separatorChar+”excel”;
String str = url +File.separatorChar+ “产品发布导入模板.xlsx”;
System.out.println(str);
File f = new File(str);
// 设置response参数,可以打开下载页面
response.reset();
response.setContentType(“application/vnd.ms-excel;charset=utf-8”);// 设置文件长度为指定文件长度
try {
response.setHeader(“Content-Disposition”, “attachment;filename=”
+ new String((“产品发布导入模板” + “.xlsx”).getBytes(),
“iso-8859-1”));// 下载文件的名称
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
ServletOutputStream out = response.getOutputStream();
BufferedInputStream bis = null;
BufferedOutputStream bos = null;
try {
bis = new BufferedInputStream(new FileInputStream(f));
bos = new BufferedOutputStream(out);
byte[] buff = new byte[2048];
int bytesRead;
while (-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
bos.write(buff, 0, bytesRead);
}
} catch (final IOException e) {
e.printStackTrace() ;
} finally {
if (bis != null)
bis.close();
if (bos != null)
bos.close();
}
}

原创粉丝点击