我想在 vaadin 窗口中添加由 pdf2swf 创建的 swf 文件,
所以我尝试使用 Vaadin 书中给出的代码https://vaadin.com/book/-/page/components.embedded.html
final ClassResource flashResource = new ClassResource("Requirements.swf", getMainWindow().getApplication());
final Embedded embedded = new Embedded("Embedded Caption", flashResource);
embedded.setType(Embedded.TYPE_OBJECT);
embedded.setMimeType("application/x-shockwave-flash");
embedded.setWidth("100px");
embedded.setHeight("100px");
mainWindow.addComponent(embedded);
mainWindow.requestRepaintAll();
但我仍然无法在 vaadin 窗口中看到 swf。
谢谢,约格什