I've built a small applet and I have all the .java class files. How can I now compile/build it so I can use it in an <applet>
tag? An eclipse based method would be best.
Also, I'm using some images in the applet.
1) Do I need to upload these images to my website
2) Right now I point to them using my local path e.g C:\java\project\images
but its all kept in 1 class so i can change this string easily if I want. What should I change it to so it'll work in a web browser?
3) Do I need to upload all the .class files?