How to convert a Swing Application to an Applet?

假装没事ソ 提交于 2019-12-01 22:14:38

The quick and dirty way:

Drop extends SingleFrameApplication. Add extends JApplet.

replace the constructor with public void init() leaving the body as is.

Create an HTML page to hold it. and give it a whirl.

There will likely be some scoping issues, but you should be able to fix those fairly easily.

Simplest thing is just to make a new outer class inheriting from JApplet, and instantiate the actual frame inside it.

Update

Found a tutorial online that could help.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!