这是我第一次尝试通过 Vaadin 组件打开使用 iReport 制作的pdf。我在许多论坛上看到但我无法理解。
现在我将尝试解释我的问题:
你有什么可以帮助我吗?
答案 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();
}