-1

这个站点http://www.swingexplorer.com/有 SwingExplorer 工具,用于导航摇摆内容,但我如何将它应用到 Applet?,特别是如果我想将它集成到 eclipse-plugin 如何配置运行配置?

我想您需要将要运行的小程序的参数提供给 AppletViwer 并让 SwingExplorer 导航 AppletViewer(进而运行您的小程序类),但我不知道如何将此类参数传递给 AppletViwer,可以任何人解释我如何做到这一点?

请注意,仅仅在小程序之上创建新框架并让它像往常一样运行 Swing 应用程序是不行的,因为它需要在类似浏览器的环境中运行。

4

1 回答 1

1

可以框架(桌面应用程序)中托管的小程序提供基本的小程序存根applet上下文的几种方法很容易在应用程序中重现。其他的要么更难实现,不切实际,要么与基于桌面的小程序无关。

此示例可以作为嵌入在 HTML 中的小程序或小程序查看器运行,或者作为嵌入在桌面组件中的小程序运行(特别是JOptionPane因为代码更短)。

该示例改编自 OP 对小程序参数更感兴趣的示例。此版本还增加了对报告文档和代码库的支持。

/*
<applet code='DesktopEmbeddedApplet' width='400' height='100'>
<param name='param' value='embedded in applet viewer or the browser'>
</applet>
*/
import java.applet.*;
import java.awt.*;
import javax.swing.*;
import java.io.File;
import java.net.URL;
import java.util.HashMap;

public class DesktopEmbeddedApplet extends JApplet {

    public void init() {
        setLayout(new GridLayout(0,1));
        String param = getParameter("param");
        System.out.println("parameter: " + param);
        add(new JLabel(param));
        add(new JLabel("" + getDocumentBase()));
        add(new JLabel("" + getCodeBase()));
    }

    public static void main(String[] args) {
        ApplicationAppletStub stub = new ApplicationAppletStub();
        stub.addParameter("param", "embedded in application");
        DesktopEmbeddedApplet pa = new DesktopEmbeddedApplet();
        pa.setStub(stub);

        pa.init();
        pa.start();
        pa.setPreferredSize(new java.awt.Dimension(400,100));
        JOptionPane.showMessageDialog(null, pa);
    }
}

class ApplicationAppletStub implements AppletStub {

    HashMap<String,String> params = new HashMap<String,String>();

    public void appletResize(int width, int height) {}
    public AppletContext getAppletContext() {
        return null;
    }

    public URL getDocumentBase() {
        URL url = null;
        try {
            url = new File(".").toURI().toURL();
        } catch(Exception e) {
            System.err.println("Error on URL formation!  null returned." );
            e.printStackTrace();
        }
        return url;
    }

    public URL getCodeBase() {
        URL url = null;
        try {
            url = new File(".").toURI().toURL();
        } catch(Exception e) {
            System.err.println("Error on URL formation!  null returned." );
            e.printStackTrace();
        }
        return url;
    }

    public boolean isActive() {
        return true;
    }

    public String getParameter(String name) {
        return params.get(name);
    }

    public void addParameter(String name, String value) {
        params.put(name, value);
    }
}
于 2013-10-17T06:53:30.473 回答