Applet containing a java application
Hi all,I have created a java application and I have decided I would like to put it in a web page. My question is, is their a way i can create an applet and just call the application I have created?Cheers for all the helpM
[249 byte] By [
fulmont99a] at [2007-11-26 22:20:57]

Use Java Web Start. If you use netbeans, you can download a plugin and simply create a Java Web Start application of your existing application without any modifications. Truth be told, I haven't used it before myself, but my colleague did it this way and it worked. So have a look at
Hi guys, I have decided to show you what I am trying to do with this at the moment. Im unsure if this will work.
I have a game application written, now I am trying to create and applet containing that, can I say
public class gameapp extends java.applet.Applet {
public void init()
{}
public void start() {
game s=new game();
}
}
When I try this it says
unreported exception java.lang.Exception; must be caught or declared to be thrown
Any suggestions?
Thanks
Michael
Message was edited by:
fulmont99