如何将Swing应用程序转换为Applet?

时间:2009-03-16 17:52:45

标签: java swing applet appframework saf

我使用Swing Application Framework创建了一个桌面应用程序,现在我该如何将其转换为applet?主类扩展了SingleFrameApplication。

EDITED:这是使用NetBeans GUI构建器的起始类:

public class PhotoApp extends SingleFrameApplication {

    /**
     * At startup create and show the main frame of the application.
     */
    @Override protected void startup() {
        show(new PhotoView(this));
    }

    /**
     * This method is to initialize the specified window by injecting resources.
     * Windows shown in our application come fully initialized from the GUI
     * builder, so this additional configuration is not needed.
     */
    @Override protected void configureWindow(java.awt.Window root) {
    }

    /**
     * A convenient static getter for the application instance.
     * @return the instance of PhotoUploaderApp
     */
    public static PhotoApp getApplication() {
        return Application.getInstance(PhotoApp.class);
    }

    /**
     * Main method launching the application.
     */
    public static void main(String[] args) {
        launch(PhotoApp.class, args);
    }
}

2 个答案:

答案 0 :(得分:4)

快速而肮脏的方式:

Drop扩展SingleFrameApplication。 添加扩展JApplet。

用public void init()替换构造函数 离开身体。

创建一个HTML页面来保存它。并给它一个旋转。

可能存在一些范围问题,但您应该能够相当容易地解决这些问题。

答案 1 :(得分:2)

最简单的事情就是使一个新的外部类继承自JApplet,并实例化其中的实际框架。

更新

在线找到了tutorial,可以提供帮助。