楼主试了半天,想用controller直接实现来着,但一直都得不到文件
@Controller
@RequestMapping("/reportDownload")
public class ReportDownloadController extends BaseController{
private static Logger logger=Logger.getLogger(ReportDownloadController.class);
@RequestMapping("/downReport")
public HttpServletResponse busReport(HttpServletRequest request,BigDecimal modelId,BigDecimal planId,HttpServletResponse response) throws IOException {
UtilReport util = new UtilReport();
String fileDownloadName = null;
String fileDisplayName = null;
try {
IsReport isReport = util.initReport(modelId, planId,request);
fileDownloadName = isReport.getRptFileName();
fileDisplayName = isReport.getRptName();
// fileDisplayName = URLEncoder.encode(fileDisplayName, "UTF-8");
fileDisplayName = new String(fileDisplayName.getBytes("UTF-8"),"ISO-8859-1");
} catch (Exception e) {
System.out.println("报告不存在");
e.printStackTrace();
}
OutputStream outp = null;
BufferedInputStream bins = null;
FileInputStream in = null;
BufferedOutputStream bous = null;
try {
in = new FileInputStream(new File(fileDownloadName));
bins = new BufferedInputStream(in);
byte[] b = new byte[bins.available()];
bins.read(b);
bins.close();
response.reset();
response.addHeader("Content-Disposition", "attachment;filename=" + fileDisplayName);
response.addHeader("Content-Length", "" + new File(fileDownloadName).length());
outp = response.getOutputStream();
bous = new BufferedOutputStream(outp);
response.setContentType("application/octet-stream");
bous.write(b);
bous.flush();
bous.close();
} catch (Exception e) {
System.out.println("文件下载失败!");
e.printStackTrace();
} finally {
if (in != null) {
in.close();
in = null;
}
if (outp != null) {
outp.close();
outp = null;
}
if (bins != null) {
bins.close();
bins = null;
}
if (bous != null) {
bous.close();
bous = null;
}
}
return response;
}