javax.servlet.ServletException: ClientAbortException: java.net.SocketException: Broken pipe错误完美解决

使用struts框架下载遇到问题javax.servlet.ServletException: ClientAbortException: java.net.SocketException: Broken pipe

可以使用刷数据流的方式解决。

下载:javax.servlet.ServletException: ClientAbortException: java.net.SocketException: Broken pipe

 

原代码为:
public String downloadFile() throws Exception {
HttpServletResponse response = ServletActionContext.getResponse();
HttpSession session = HttpRequester.getHttpSession();
Object su = session.getAttribute("ACCOUNT");
if (su == null) {
System.out.println("session超时");
throw new Exception("session超时");
}
taskResultExcel = downloadFile.substring(downloadFile.lastIndexOf("/")+1, downloadFile.length());
response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition", "attachment;filename=\""+ taskResultExcel + "\"");
response.setHeader("Cache-Control","must-revalidate, post-check=0, pre-check=0");
response.setHeader("Pragma", "public");
return SUCCESS;
}
修改为如下代码即可解决
Caused by: ClientAbortException: java.net.SocketException: Broken pipe
public String download() {
HttpServletResponse response = getResponse();
String flag = SUCCESS;
log.info("下载的文件为: " + downloadFile);
try {
String filePath2 = ServletActionContext.getServletContext().getRealPath("/"); //取当前系统路径
// path是指欲下载的文件的路径。在path 路径下创建名为
// File file = new File(filePath2 + "zjh/下载.xls");
File file = new File(filePath2 + downloadFile);
if (!file.exists()){
log.info("文件没有找到:" + downloadFile);
flag = null;
}
// 取得文件名。
String filename = file.getName();
// 取得文件的后缀名。
String ext = filename.substring(filename.lastIndexOf(".") + 1).toUpperCase();

// 以流的形式下载文件。
// InputStream fis = new BufferedInputStream(new FileInputStream(filePath2 + "zjh/下载.xls"));
InputStream fis = new BufferedInputStream(new FileInputStream(new File(filePath2 + downloadFile)));
byte[] buffer = new byte[fis.available()];
fis.read(buffer);
fis.close();
// 清空response
taskResultExcel = downloadFile.substring(downloadFile.lastIndexOf("/")+1, downloadFile.length());
log.info("页面文件为: " + taskResultExcel);
response.reset();
response.addHeader("Content-Disposition", "attachment;filename="+ java.net.URLEncoder.encode(taskResultExcel,"utf-8"));
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) {
log.info("下载文件出现异常" + ex.getMessage());
flag = null;
}
// return response;
return flag;
}


 

 

 

转自:http://blog.csdn.net/tianyawudie/article/details/7301353

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值