我有个问题。

我如何直接运行我的java-applet而不嵌入到我的网页中?

我知道appletViewr可以在没有浏览器的情况下执行applet,但是我需要在没有html页面的情况下获取java applet。

最佳答案

在您的代码中使用以下代码,其中AppletClass是您的Applet类。

AppletClass appletClass = new AppletClass ();

JFrame frame = new JFrame();
frame.setLayout(new GridLayout(1, 1));
frame.add(appletClass );

// Set frame size and other properties
...

// Call applet methods
appletClass .init();
appletClass .start();

frame.setVisible(true);

可以根据需要进行更多的自定义。

10-05 17:42