Originally posted by baseballgod69
Thanks a lot man. I'll start with Java since I have a class on it next semester and I want to get a head start.
If that's the case, let me give you a few things to help you get started on Java.
First off, you'll need the JDK, go to
You must login or register to view this content. and select "Java SE" as the download (that stands for Java Standard Edition), note that this can probably be found under the "Top Downloads" list. Choose the latest JDK from the options that appear, don't download any bundles, the correct choice would currently be Java Platform (JDK) 7u1. Complete the download process, download the installer (if available) for your operating system. Finish the install process (by running the installer). You may then want to consider optionally setting your PATH environment variable. You can read a more in-depth tutorial at:
You must login or register to view this content.
Next, you'll need a text editor/IDE. One popular choice seems to be
You must login or register to view this content. (note that if you choose Netbeans, there is a
You must login or register to view this content. in which you can install Netbeans and the JDK all at once). Another popular choice is
You must login or register to view this content.. One that I would recommend for people just starting to learn Java is called
You must login or register to view this content.. Lastly, you can always type up code in a simple text editor, and compile/run from the command line.
Finally, you'll want a tutorial. I'd highly recommend
You must login or register to view this content., from there you can start at the top, and work your way through the tutorials.