How to build a java applet?
Posted
by Stefano Borini
on Stack Overflow
See other posts from Stack Overflow
or by Stefano Borini
Published on 2010-03-15T06:01:47Z
Indexed on
2010/03/15
6:09 UTC
Read the original article
Hit count: 467
Most of the tutorials around explain how to create a java applet: create a .java file with a class, compile it with javac, put the .class somewhere, add a proper tag in the html.
However, I'm not able to find anything about the best practices to build and release a complex applet, made of multiple classes and with additional libraries. How is the build/release process for this case ? What is it needed to go from my java project to the final .jar to put on the web ?
I'm working with pure Eclipse, no plugins.
© Stack Overflow or respective owner