Java Jdeveloper For Beginners
Java Jdeveloper For Beginners
One of the difficult things about getting started with Java is installing everything you
need. Even before you write a single line of code, the headaches begin! Hopefully, the
following sections will make life easier for you.We're going to write all our code using a
free piece of software called NetBeans. This is one of the most popular IDEs (Interface
Development Environment) in the world for writing Java programmes. You'll see what it
looks like shortly. But before NetBeans will work, it needs you to install the necessary
Java components and files. First up is something called the Java Virtual Machine.
http://www.oracle.com/technetwork/java/index.html
The one we're going to be using is called Java SE. (The SE stands for Standard
Edition.). Click on that link in the Top Downloads on the right. You'll then find yourself on
a page with a bewildering list of options to download. Because we're going to be using
NetBeans, locate this:
JDK 8 with NetBeans
Click the Download link to be taken to yet another page. Locate the link for your
operating system. A word of warning, though - this download will be big, at over 290
megabytes at the time of writing for a 64 bit Windows computer! Once you've
downloaded the JDK and NetBeans, install it on your computer.
We're going to be using NetBeans to write our code. Before launching the software,
however, here's how things work in the world of Java.
NetBeans handles all the creating and compiling for you. Behind the scenes, though, it
takes your sources code and creates the java file. It will launch Javac and compile the
class file. NetBeans can then run your programme inside its own software. This saves
you the hassle of opening up a terminal window and typing long strings of commands.
Now that you have a general idea of how Java works, launch your NetBeans software.
Then click the link below to go to continue with the lesson.
We're going to be create a Java Application, so select Java under Categories, and
then Java Application under Projects. Click the Next button at the bottom to go to step
two:
In the Project Name area at the top, type a Name for your Project. Notice how the text
at the bottom changes to match your project name (in the text box to the right of Create
Main Class):
firstproject.FirstProject
The Class created will be called FirstProject, with a capital "F", capital "P". The package
is also called firstproject, but with a lowercase "f" and lowercase "j".
The default location to save your projects appears in the Project Location text box. You
can change this, if you prefer. NetBeans will also create a folder with your project name,
in the same location. Click the Finish button and NetBeans will go to work creating all
the necessary files for you.
When NetBeans returns you to the IDE, have a look at the Projects area in the top left
of the screen (if you can't see this, click Window > Projects from the menu bar at the
top of the software):
Click the plus symbol to expand your project, and you'll see the following:
Now expand Source Packages to see your project name again. Expand this and you'll
see the Java file that is your source code.
This same source code should be displayed to the right, in the large text area. It will be
calledFirstProject.java. If you can't see a code window, simply double click
FirstProject.java in your Projects window above. The code will appear, ready for you to
start work.
The coding window that appears should look like this:
Java Comments
When you create a New Project in NetBeans, you'll notice that some text is greyed out,
with lots of slashes and asterisks:
The greyed-out areas are comments. When the programme runs, comments are
ignored. So you can type whatever you want inside of your comments. But it's usual to
have comments that explain what is you're trying to do. You can have a single line
comment by typing two slashes, followed by your comment:
//This is a single line comment
If you want to have more than one line, you can either do this:
//This is a comment spreading
//over two lines or more
In the next part, you'll learn about the structure of the above code, and how to run your
programmes.
You can see we have the package name first. Notice how the line ends with a
semicolon. If you miss the semicolon out, the program won't compile:
package firstproject;
The class name comes next:
public class FirstProject {
}
You can think of a class as a code segment. But you have to tell Java where code
segments start and end. You do this with curly brackets. The start of a code segment is
done with a left curly bracket { and is ended with a right curly bracket }. Anything inside
of the left and right curly brackets belong to that code segment.
What's inside of the left and right curly brackets for the class is another code segment.
This one:
public static void main( String[ ] args ) {
}
The word "main" is the important part here. Whenever a Java program starts, it looks for
a method called main. (A method is just a chunk of code. You'll learn more about these
later.) It then executes any code within the curly brackets for main. You'll get error
messages if you don't have a main method in your Java programs. But as its name
suggest, it is the main entry point for your programs.
The blue parts before the word "main" can be ignored for now.
(If you're curious, however, public means that the method can be seen outside of this
class; static means that you don't have to create a new object; and void means it
doesn't return a value - it just gets on with it. The parts between the round brackets of
main are something called command line arguments. Don't worry if you don't
understand any of that, though.)
The important point to remember is that we have a class called FirstProject. This class
contains a method called main. The two have their own sets of curly brackets. But the
main chunk of code belongs to the class FirstProject.
In the next part, you'll learn how to print to the output window.
Double click out to add it to your code, then type another full stop. Again, the list of
options appears:
Select println( ). What this does is to print a line of text to the output screen. But you
need to place your text between the round brackets of println. Your text needs to go
between a pair of double quotes:
Once you have your double quotes in place, type your text:
Notice that the line ends in a semicolon. Each complete line of code in Java needs a
semicolon at the end. Miss it out and the program won't compile.
OK, we can now go ahead and test this program out. First, though, save your work. You
can clickFile > Save, or File > Save All. Or click the Save icon on the NetBeans toolbar.
To end this section, click below to learn how to run your programs.
You can also click the green arrow on the NetBeans toolbar:
Another way to run your programmes is from the Projects window. This will ensure that
the right source code is being run. Simply right click your java source file in the projects
window and you'll see a menu appear. Select Run File. (We've chopped off some of the
menu items. Yours will be longer.)
Another way to run the code is to right click inside of the code area. In the image below,
we've right-clicked just before the final curly bracket (again, we've chopped off some
menu items):
Using one of the above methods, run your programme. You should see something
happening in the Output window:
The second line in the Output window above is our code: My First Project. You can
quickly run it again by clicking the two green arrows in the top left of the Output window.
In the next lesson, you'll learn how to share your programs with others.
You should see a JAR file and README text file. The text file contains instructions on
how to run the program from a terminal/console window.
Now that you know how to run your java source files, let's do some programming.