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]
# 1
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
Nemesish3da at 2007-7-10 11:18:21 > top of Java-index,Java Essentials,Java Programming...
# 2
Thanks for the response. Does this mean that Java web start will have to be installed on every computer that I want to run it on? I did want it to function on any computer with the Java run time enviroment available. Is this possible?M
fulmont99a at 2007-7-10 11:18:21 > top of Java-index,Java Essentials,Java Programming...
# 3

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

fulmont99a at 2007-7-10 11:18:21 > top of Java-index,Java Essentials,Java Programming...