gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:59:05 25 4
gpt4 key购买 nike

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

已编辑:这是起始类,使用了 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() 替换构造函数保持 body 原样。

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

可能会出现一些范围界定问题,但您应该能够相当轻松地解决这些问题。

关于java - 如何将 Swing 应用程序转换为 Applet?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/651470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com