java代码实现pdf文档下载

楼主试了半天,想用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;
}

http://blog.csdn.net/zxgmdzz/article/details/78424705

图片说明

和下载word文档的类似!若需要请私信!

和普通的下载是一样的,设置好你的filename io流啥的都一样的 看你用的是springmMVC 查查他的下载就行了

和下载普通的文件一样,设置好你要下载的文件的输出流等信息就可以!

跟下载普通文件一样的