Hey, I have a question about Java Applets. I wrote a small applet(just one file) and could run it in my web browser, by making this html file:

<APPLET CODE="MyApplet.class" WIDTH=400 HEIGHT=400>
</APPLET>

And it worked just fine.

I am going to make a bigger project and I am going to make it an applet.

How is this gonna work if I have many classes and packages?

Does only Main class extends JApplet? Or each class should extend JApplet?

Do I have to specify all *.class in html code?

Thanks for your help, I appreciate it.

Hey, I have a question about Java Applets. I wrote a small applet(just one file) and could run it in my web browser, by making this html file:

<APPLET CODE="MyApplet.class" WIDTH=400 HEIGHT=400>
</APPLET>

And it worked just fine.

I am going to make a bigger project and I am going to make it an applet.

How is this gonna work if I have many classes and packages?

Does only Main class extends JApplet? Or each class should extend JApplet?

Do I have to specify all *.class in html code?

Thanks for your help, I appreciate it.

Only your main class needs to be specified in that HTML code. And make sure all the files your Main class requires are in the same Package as Main Class.Only Main Class needs to extend JApplet.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.