public void saveFile(){
//文件地址
try {
HttpServletResponse response = ServletActionContext.getResponse();
data = data.substring(data.lastIndexOf("LovePatPrint")+12, data.length());
String path = ServletActionContext.getServletContext().getRealPath("")+data;
// 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=" +filename);
response.setContentType("application/octet-stream");
response.addHeader("Content-Length", "" + file.length());
OutputStream os = response.getOutputStream();
os.write(buffer);
os.flush();
os.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
java 文件实现 文件下载 io流下载
最新推荐文章于 2024-08-30 11:41:08 发布