Reputation: 129
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
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
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
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