Bhuvana Nagulan
Bhuvana Nagulan

Reputation: 129

How to create Java applets?

I am just stepping into Java and need help with some basic things. I want to create an applet. Where should I start?

Upvotes: 1

Views: 570

Answers (4)

Karl
Karl

Reputation: 2945

Why not download netbeans and take a look at the tutorials on www.netbeans.org.

Having the ide deal with build issues help you get to understand things quicker if your a newbie.

Upvotes: 0

Andreas Dolk
Andreas Dolk

Reputation: 114757

Honestly - start with forgetting all about applets. Years ago, the applet was the warmup for Java tutorials, nowadays, you should start with 'applications' - classes that implement the main method.

Today people prefer Java Script or Java Web Start for web applications.

Upvotes: 1

codekitty
codekitty

Reputation: 1438

java tutorial is a great place to start.

are you sure you want to start with applets? they are outdated. I'd suggest you start with java application. it's simpler to understand java that way and then you can "go web" in more modern ways.

Upvotes: 0

Joey
Joey

Reputation: 354356

The Java Tutorials are usually a good place to start.

Upvotes: 9

Related Questions