1

假设我有类似的东西:

Applet myApplet = new MyApplet();

如何以出现新窗口的方式调用该小程序,并且我仍然能够从该范围访问该 MyApplet 实例?

一般来说,我希望能够编写这样的代码:

class Runner {
    public static void main(String[] args) {
        new Runner().run();
    }

    void run() {
        MyApplet myApplet = new MyApplet();
        myApplet.init();
        myApplet.doSomething();
    }
}

我该怎么做?

4

2 回答 2

1

这个问题在其他地方得到了回答,例如,http://www.dreamincode.net/code/snippet1607.html

我是通过 https://www.google.ru/search?q=java+applet+%22as+application%22找到的

于 2012-10-31T13:44:15.153 回答
0

您必须为您的小程序提供一个实现java.applet.AppletStub。存根提供模拟 Web 浏览器行为的上下文信息。

于 2012-10-31T13:43:11.790 回答