我正在使用Java,Jasper Reports和JSF。我想生成PDF格式的报告,并且可以在iframe
这样的事情中显示它,因为在同一页面上可以将过滤器放到报告中等等。报告作为临时文件正确生成即使我在浏览器中粘贴路径也会显示正确。但是要将该路由放在iframe中,我会收到以下错误:
Not allowed to load the local resource: file :/ / / C :/ Users / Juanes ~ 1/AppData/Local/Temp/reportePedidosTemporal1922509630584311367.pdf
这是我的代码:
public void prueba(AjaxBehaviorEvent evento)
{
try
{
Map<String, Object> parametros = new HashMap<String, Object>();
parametros.put("autor", "Juan Esteban");
parametros.put("titulo", "Reporte de Pedidos");
List<PedidosVO> listaPedidos = new ArrayList<PedidosVO>();
for (int i = 1; i <= 10; i++)
{
PedidosVO pedido = new PedidosVO(""+i,"Cliente:"+i,(i+1));
pedido.setPuntos(i);
listaPedidos.add(pedido);
}
JasperDesign design = JRXmlLoader.load("C:\\Reportes\\Reporte2Pedidos.jrxml");
JasperReport reporte = JasperCompileManager.compileReport(design);
//-**-**-/*-/
JasperPrint jasperPrint = JasperFillManager.fillReport(reporte, parametros,new JRBeanCollectionDataSource(listaPedidos));
byte[] flujo = JasperExportManager.exportReportToPdf(jasperPrint);
File tempFile = File.createTempFile("reportePedidosTemporal",".pdf");
System.out.println(tempFile.setReadable(true));
escribirByte(tempFile,flujo);
tempFile.deleteOnExit();
if(tempFile.exists())
{
System.out.println("RUTA : "+tempFile.getPath());
url = tempFile.getPath();
}
}
catch(Exception e)
{
e.printStackTrace();
}
}
任何想法,建议都会非常感激
答案 0 :(得分:1)
您需要有一个指向加载到iframe中的PDF的网址。就目前而言,您正试图直接从文件系统加载文件。这意味着您的站点将尝试直接从最终用户的文件系统加载文件,但由于显而易见的原因,这是不允许的。
在服务器上生成PDF,然后生成指向它的URL。然后将其设置为iframe源。