通过Vaadin组件打开使用JasperReports制作的pdf

时间:2013-07-10 07:27:57

标签: jasper-reports vaadin

这是我第一次尝试通过 Vaadin 组件打开使用 iReport 制作的pdf。我在许多论坛上看到但我无法理解。

现在我将尝试解释我的问题:

  1. 我使用 iReport
  2. 创建了文件(.jasper)
  3. 我想点击 Vaadin 按钮
  4. 时打开此文件

    你有什么可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

更新

您生成的pdf是pdf还是流? 火狐/铬: 这个浏览器有自己的“application / pdf”查看器

Internet Explorer: 在IE上查看PDF我使用的是Adobe Acrobat Reader。 Adobe Acrobat Reader安装浏览器插件。 此插件检测application / pdf内容并在Internet Explorer中显示自己的查看器。

这是在Vaadin中进行此操作的示例:

private void viewDocument() 
{
    final String retrievalName = "222.pdf"; 

    Window window = new Window();
    window.setCaption("View PDF");
    window.getContent().setSizeFull();

    final StreamResource resource = new StreamResource(new StreamResource.StreamSource()
    {
        public InputStream getStream()
        {
            try
            {
                byte[] DocContent = null;
                DocContent = getFileBytes("C:\\Temp\\222.pdf");
                return new ByteArrayInputStream(DocContent);
            }
            catch (Exception e1)
            {
                e1.printStackTrace();
                return null;
            }
        }
    }, retrievalName, getMainWindow().getApplication());

    Embedded c = new Embedded("", resource);
    c.setSizeFull();
    resource.setMIMEType("application/pdf");
    c.setType(Embedded.TYPE_BROWSER);
    window.addComponent(c);

    window.setModal(true);
    window.setWidth("90%");
    window.setHeight("90%");

    getMainWindow().addWindow(window);
}

/**
 * getFileBytes
 * 
 * @author NBochkarev
 * 
 * @param fileOut
 * @return
 * @throws IOException
 */
public static byte[] getFileBytes(String fileName) throws IOException
{
    ByteArrayOutputStream ous = null;
    InputStream ios = null;
    try
    {
        byte[] buffer = new byte[4096];
        ous = new ByteArrayOutputStream();
        ios = new FileInputStream(new java.io.File(fileName));
        int read = 0;
        while ((read = ios.read(buffer)) != -1)
            ous.write(buffer, 0, read);
    }
    finally
    {
        try
        {
            if (ous != null)
                ous.close();
        }
        catch (IOException e)
        {
            // swallow, since not that important
        }
        try
        {
            if (ios != null)
                ios.close();
        }
        catch (IOException e)
        {
            // swallow, since not that important
        }
    }
    return ous.toByteArray();
}