Reputation: 4378
Hi guys
I have an Applet in MyApplet.java
file. It uses external .jar libraries and I have to get it work on a Web Browser.
1) I am a complete newbie in writing custom classpath, manifest ecc... which is the correct way to compile my .java file to get the .class?
2) Once i have the .class file, what i have to do in my webspace? where to put the jar files? what i have to write in my html page?
A step by step tutorial would be awesome
Upvotes: 2
Views: 2397
Reputation: 74750
There are nice resources out there, for example "The Java Tutorial", which has a section on How to write Applets.
But you seem to need even more basic advise on compiling - so take a look at Getting Started, and later at Deployment. Then come back if you have more concrete problems.
Upvotes: 1