繁体   English   中英

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

[英]How to convert a Swing Application to an Applet?

我使用 Swing 应用程序框架创建了一个桌面应用程序,现在如何将其转换为小程序? 主要的 class 扩展了 SingleFrameApplication。

编辑:这是起始 class,使用 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);
    }
}

快速而肮脏的方式:

Drop 扩展 SingleFrameApplication。 添加扩展 JApplet。

用 public void init() 替换构造函数,使主体保持原样。

创建一个 HTML 页面来保存它。 试一试。

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

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

更新

在网上找到了一个可以帮助的教程

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM