我使用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);
}
}
答案 0 :(得分:4)
快速而肮脏的方式:
Drop扩展SingleFrameApplication。 添加扩展JApplet。
用public void init()替换构造函数 离开身体。
创建一个HTML页面来保存它。并给它一个旋转。
可能存在一些范围问题,但您应该能够相当容易地解决这些问题。
答案 1 :(得分:2)