1

我正在使用 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();
    }

}

任何想法,建议将不胜感激

4

1 回答 1

1

您需要有一个指向您加载到 iframe 中的 PDF的URL 。就目前而言,您正在尝试直接从文件系统加载文件。这意味着您的站点将尝试直接从最终用户的文件系统加载文件,这显然是不允许的。

在您的服务器上生成 PDF,然后生成指向它的 URL。然后将其设置为 iframe 源。

于 2013-01-07T19:43:04.273 回答