Java Programming Overview22
Java Programming Overview22
Java Programming Overview22
It is used for:
Desktop applications
Web applications
Games
Database connection
Java works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc.)
Java is an object oriented language which gives a clear structure to programs and allows code
to be reused, lowering development costs
As Java is close to C++ and C#, it makes it easy for programmers to switch to Java or vice
versa
Java Getting Started
Java Install
To check if you have Java installed on a Windows PC, search in the start bar for Java or type the
following in Command Prompt (cmd.exe):
If Java is installed, you will see something like this (depending on version):
If you do not have Java installed on your computer, you can download it for free at oracle.com.
Note: In this tutorial, we will write Java code in a text editor. However, it is possible to write Java
in an Integrated Development Environment, such as IntelliJ IDEA, Netbeans or Eclipse, which are
particularly useful when managing larger collections of Java files.
Go to "System Properties" (Can be found on Control Panel > System and Security > System >
Advanced System Settings)
Then, select the "Path" variable in System variables and click on the "Edit" button
Click on the "New" button and add the path where Java is installed, followed by \bin. By default,
Java is installed in C:\Program Files\Java\jdk-11.0.1 (If nothing else was specified when you
installed it). In that case, You will have to add a new path with: C:\Program Files\Java\jdk-
11.0.1\bin
At last, open Command Prompt (cmd.exe) and type java -version to see if Java is running on
your machine
Java Quickstart
In Java, every application begins with a class name, and that class must match the filename.
Let's create our first Java file, called Main.java, which can be done in any text editor (like
Notepad).
The file should contain a "Hello World" message, which is written with the following code:
Main.java
System.out.println("Hello World");
Don't worry if you don't understand the code above - we will discuss it in detail in later chapters.
For now, focus on how to run the code above.
Save the code in Notepad as "Main.java". Open Command Prompt (cmd.exe), navigate to the
directory where you saved your file, and type "javac Main.java":
Hello World
Java Syntax
Java Syntax
In the previous chapter, we created a Java file called Main.java, and we used the following code
to print "Hello World" to the screen:
Main.java
System.out.println("Hello World");
Example explained
Every line of code that runs in Java must be inside a class. In our example, we named the class
Main. A class should always start with an uppercase first letter.
The name of the java file must match the class name. When saving the file, save it using the
class name and add ".java" to the end of the filename. To run the example above on your
computer, make sure that Java is properly installed: Go to the Get Started Chapter for how to
install Java. The output should be:
Hello World
The main() method is required and you will see it in every Java program:
Any code inside the main() method will be executed. Don't worry about the keywords before and
after main. You will get to know them bit by bit while reading this tutorial.
For now, just remember that every Java program has a class name which must match the
filename, and that every program must contain the main() method.
System.out.println()
Inside the main() method, we can use the println() method to print a line of text to the screen:
System.out.println("Hello World");
Note: The curly braces {} marks the beginning and the end of a block of code.
System is a built-in Java class that contains useful members, such as out, which is short for
"output". The println() method, short for "print line", is used to print a value to the screen (or a
file).
Don't worry too much about System, out and println(). Just know that you need them together to
print stuff to the screen.
You should also note that each code statement must end with a semicolon (;).
Exercise:
Insert the missing part of the code below to output "Hello World".
("Hello World");
Print Text
You learned from the previous chapter that you can use the println() method to output values or
print text in Java:
System.out.println("Hello World!");
You can add as many println() methods as you want. Note that it will add a new line for each
method:
Example
System.out.println("Hello World!");
System.out.println("It is awesome!");
Double Quotes
When you are working with text, it must be wrapped inside double quotations marks "".
Example
The only difference is that it does not insert a new line at the end of the output:
Example
Note that we add an extra space (after "Hello World!" in the example above), for better
readability.
We use println() as it makes it easier to read the output of code.
System.out.println(3);
System.out.println(358);
System.out.println(50000);
You can also perform mathematical calculations inside the println() method:
Example
System.out.println(3 + 3);
Example
System.out.println(2 * 5);