Eclipse: how to create an applet?

I have finished writing my applications and would like to deploy it as a Java applet.

How can i start this?

Also, how would you deploy it to the html page and pass the argument to the Java applet?

+6
java eclipse applet
source share
2 answers

If you just want to deploy the application. from the website, see Java Web Start . JWS can run a standard frame (or applet) directly from a link on a web page and has far fewer problems, providing many advantages.

+2
source share

Here is a tutorial on how to create an applet in eclipse. http://www.roseindia.net/eclipse/applet-eclipse.shtml

+12
source share

All Articles