1

我必须将 swf 文件列表保存在本地系统的本地目录中,而不是项目文件夹中。

我必须使用它的名称从该路径调用 swf 文件,并将其显示在浏览器中,以用于 liferay 6.1 中的 vaadin portlet。

任何人都可以分享如何实现这一目标的想法吗?

提前致谢

4

1 回答 1

2

为此,您必须使用 Stream Resource .. 只需检查以下示例代码 ..

祝你的签证过程好运:)

    Window window = new Window();

    setMainWindow(window);

    Label label = new Label("Embed tag");

    label.setDebugId("lblMsg");


    window.addComponent(label);

    StreamSource s = new StreamResource.StreamSource() {

    @Override
    public InputStream getStream() {
    File f = new File("C:/test/test.swf");
    FileInputStream fis=null;
    try {
    fis = new FileInputStream(f);
    } catch (FileNotFoundException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    }
    return fis;
    }
    };

    StreamResource r = new StreamResource(s,"application/x-shockwave-                        flash",getMainWindow().getApplication());
    Embedded e = new Embedded();
    e.setType(Embedded.TYPE_OBJECT);
    e.setMimeType("application/x-shockwave-flash");
    e.setSource(r);
    e.setWidth("400px");
    e.setHeight("400px");

    window.addComponent(e);
于 2012-10-22T12:41:20.007 回答