您好我正在使用servlet进行打印。
response.setContentType("application/xls/csv/html/pdf/txt/html");
response.setHeader("Content-Disposition", "attachment;filename="+reportType+"."+reportView);
response.setContentLength(bytes.length);
response.getOutputStream().write(bytes,0,bytes.length);
一旦完成所有(打印),我需要回到jsp(test.jsp)页面,我在上面调用servlet。
在该行获取错误:
request.getRequestDispatcher ("/jsp/test.jsp").include(request, response);
更多代码。
byte bytes[] = null;
if(reportView.equalsIgnoreCase(VIEW_OPTION_HTML))
bytes = GenerateHTML.generateHTML(jp);
else if(reportView.equalsIgnoreCase(VIEW_OPTION_PDF))
bytes = GeneratePDF.generatePDF(jp);
else if(reportView.equalsIgnoreCase(VIEW_OPTION_XLS))
bytes = GenerateXLS.generateXLS(jp);
else if(reportView.equalsIgnoreCase(VIEW_OPTION_OTD))
bytes = GenerateODT.generateODT(jp);
其中reportView是视图类型,Jp是JasperPrint,我在其他模块中将打印数据添加到其中。