Download and Install the Java SDK.
This is the Java compiler meaning this will enable your computer to compile and run Java programs, compared to the JRE (Java Runtime Environment) which allows you to run Java programs but not compile them. The file is quite large (60 megabytes) so it may take awhile to finish downloading; installation is simple, just use all the defaults. The Java directory should be something like C:\Program Files\Java. Where ever you install it, make sure you remember!
Download JCreator.
Downloading this may also take awhile but it is dail-up friendly. I recommend downloading the most recent version of JCreator; however, some people may require you to use past versions. After you download, install with the default settings. Open up JCreator and go to Configure - Options. On the left, go to JDK Profiles and delete everything you see (if you see any). Click on New and go to the directory you installed the Java SDK. This will link the SDK with JCreator so it can actually start compiling.
Start a New Program.
After all of this, you'll be able to start a new program. Don't be intimidated by JCreator's start page. I recommend you not read the tutorials they have; instead, find a step-by-step tutorial on the internet or follow this brief tutorial for the "Hello World" program. To make this, you'll need to create a new File. Go to File-New-File... Now, click on Main Class on the right side, leave everything else as is. Name the file "Hello" or something similar; however, remember the name including any capitalizations.
JCreator will automatically write some of the code needed to run the program. If you prefer a blank file, select Blank File during the instructions. In this case, leave it as it is and type "System.out.println("hello world");" in the brackets after "public static void main(String[] args)". It should look like this:
public static void main(String[] args){
System.out.println("hello world");
}
Now go to Build-Compile File in the menu. Then Build-Execute File. This will compile and execute the code which should display "hello world" at the bottom (or in a command prompt under previous versions of JCreator).
Congratulations, you've made your first program with JCreator!
Published by cheeze
Love math which probably lead to my interest in programming; later started the violin which lead to music which is starting to overpower the programming side. College now. Yay. View profile
Netbeans.org A Basic ReviewA review of www.netbeans.org and the products it has to offer and some of the reasons why users should download and use their free Netbeans IDE and its extra packages.
Starting Point for Understanding the C Programming LanguageIf you are interested in learning about the C Programming Language, but you don't know where to start, this guide will help you understand what the language is and where it came...
Photoshop Tutorial: How to Digitally Create Beautiful White TeethLearn how to digitall create beautiful white teeth in photoshop. This is perfect if you're a beginner in photoshop, or if you just want to learn some new techniques. Check out t...
Photoshop Tutorial: Learning How to Use and Load Brushes in PhotoshopIn this step by step tutorial you will learn how to use the basic brush features in Adobe Photoshop.- So, You Want to Start a Home Business? These have been just a few examples of home businesses you could start with little or no money. All of them can be advertised local to your home with flyers and business cards.
- The Best Computer Programming Language for Beginners
- Beginner's Photoshop Tutorial: Learning to Create Your Own Brushes
- A Short Introduction to Java Programming Language
- A Beginner's Guide to Learning Ruby on Rails
- The Newly Single Woman's Guide to Independent Living
- Beginners' Guide to Programming: Q-Basic and Liberty Basic
- Introverts' Guide to Being the Life of the Party
- Download Java SDK
- Download JCreator
- Compile and Execute




