Can I use my normal .java file with a web? I dont mean the applet, but a normal Java Application, if so, how?
Printable View
Can I use my normal .java file with a web? I dont mean the applet, but a normal Java Application, if so, how?
Not really. There's Java web start which can start a class file stored on the web, but all it does actually is downloading the file and running it (I think). If you want to integrate Java into a web page you have to use an applet.
If that is what you mean.