Introduction To Java Programming - Tutorial
Introduction To Java Programming - Tutorial
Tutorials
Services
Products
Books
Company
Donate
Contact us
Search
Training
Books
Table of Contents
1. Introduction to Java
1.1. History
1.2. Java and open source software
1.3. Java virtual machine
1.4. Java Runtime Environment vs. Java Development Kit
1.5. Characteristics of Java
1.6. Development Process with Java
1.7. Garbage collector
1.8. Classpath
2. Installation of Java
2.1. Check installation
2.2. Install Java on Ubuntu
2.3. Install Java on MS Windows
2.4. Installation problems and other operating systems
2.5. Validate installation
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
2.6. How can you tell you are using a 32 bit or 64 bit version of
Java?
3. Exercise: Write, compile and run a Java program
3.1. Write source code
3.2. Compile and run your Java program
3.3. Using the classpath
4. Java language structure
4.1. Basics: Package, Class and Object
4.2. Package
4.3. Class
4.4. Object
4.5. Inheritance
4.6. Object as superclass
5. Java interfaces
5.1. What is an interface in Java?
5.2. Abstract, default and static methods in Interfaces
5.3. Implementing Interfaces
5.4. Evolving interfaces
5.5. Multiple inheritance of methods
5.6. Functional interfaces
6. Java basic terms
6.1. Override methods and the @Override annotation
7. The type system of Java
7.1. Primitives and references
7.2. Primitives
7.3. Reference types
7.4. Autoboxing and wrapper types
8. Variables and methods
8.1. Variable
8.2. Instance variable
8.3. Local variable
8.4. Methods
8.5. Main method
8.6. Constructor
9. Modifiers
9.1. Access modifiers
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
1.Introduction to Java
1.1.History
to write program
code in
other
languages than
the Java programming language
which still runs
on
the
Java virtual
machine. The
Java platform
is usually associated with the
Java virtual machine
and the
Java core libraries.
In 2006 Sun started to make Java available under the GNU General
Public License (GPL). Oracle continues this
project called
OpenJDK.
The Java
virtual
machine (JVM) is a software implementation of a
computer that
executes programs like a real
machine.
The Java runtime environment (JRE) consists of the JVM and the
Java class libraries. Those contain the
necessary functionality to start
Java
programs.
1.5.Characteristics of Java
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
At some point the programmer (or the IDE) calls the Java
compiler
(javac).
The Java compiler creates the
bytecode
instructions.
These instructions are
stored in
.class
files and can be executed by the Java Virtual
Machine.
1.7.Garbage collector
1.8.Classpath
The
classpath
defines where the Java compiler and Java runtime look
for
.class
files to
load. These instructions
can be used in the Java program.
For
example, if you want to use an external Java
library
you have to
add
this
library to your classpath to use it in
your
program.
2.Installation of Java
2.1.Check installation
To run Java programs on your computer you must at least have the Java
runtime environment (JRE) installed.
This might already be the case
on your machine.
You can test
is the JRE is installed and in your
current path by
opening a console
(if you are using
Windows: Win+R,
enter
cmd
and press Enter) and by typing in the
following
command:
java -version
2.5.Validate installation
Switch again to the command line and run the following command.
java -version
2.6.How can you tell you are using a 32 bit or 64 bit version of
Java?
Select or create a new directory which will be used for your Java
development. In this description the path
\home\vogella\javastarter
is used. On Microsoft Windows
you might want to use
c:\temp\javastarter.
This path is
called
javadir
in the following description.
Warning:
Do not use a rich editor like Microsoft Word or LibreOffice for
writing Java code. If in
doubt, google for "Plain text editor for
[your_OS]".
the
filename must be
HelloWorld.java,
because
the
class is called
HelloWorld .
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
Tip:
If you don't know how to do this, google for "How to open a
shell under [your_OS]".
Switch to the
javadir
directory with the command
cd javadir ,
for
example, in the above example
via the
cd \home\vogella\javastarter
command.
Use the
ls
command ( dir
under Microsoft Windows) to
verify
that
the source file is in the
directory.
Compile your Java source file into a class file with the
following command.
javac HelloWorld.java
HelloWorld.class. If you
see
this
file, you have successfully compiled your first Java source
code
into
bytecode.
Tip:
By default, the compiler puts each class file in the same
directory as its source file. You can
specify a separate destination
directory with the -d compiler flag.
You can now start your compiled Java program. Ensure that you are
still in the
jardir
directory and enter the
following command to start your Java program.
java HelloWorld
You can use the classpath to run the program from another place
in your directory.
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
If you are not in the directory in which the compiled class is stored,
then the system will show an error message:
Exception in thread "main" java.lang.NoClassDefFoundError:
test/TestClass
4.2.Package
It is
common practice to use the
reverse
domain name of the company as
top
level package. For example,
the
company might own the domain,
vogella.com and in this example
the
Java
packages of this company starts
with
com.vogella .
4.3.Class
Note:
The class can be seen as the blueprint of an object. It
describes how an object is created.
package test;
class MyClass {
}
4.4.Object
Def.: An object is an instance of a class.
4.5.Inheritance
The class
from which the subclass is derived is called a
superclass.
package com.vogella.javaintro.base;
class MyBaseClass {
@Override
public void hello() {
System.out.println("Hello from MyBaseClass");
}
}
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
package com.vogella.javaintro.base;
class MyExtensionClass extends MyBaseClass {
}
4.6.Object as superclass
5.Java interfaces
5.1.What is an interface in Java?
An
interfaces
is a type similar to a class and is defined via the
interface
keyword. Like a class an
interface
defines
methods. Classes can
implement the interfaces and by this they must
obey the contract
defined
in the
interface, e.g., the clast provide
implementation for
all abstract methods defined in the interface.
package testing;
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
5.3.Implementing Interfaces
package com.vogella.javaintro.base;
public class MyClassImpl implements MyInterface {
@Override
public void test() {
}
@Override
public void write(String s) {
}
public static void main(String[] args) {
MyClassImpl impl = new MyClassImpl();
System.out.println(impl.reserveString("Lars Vogel"));
}
}
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
5.4.Evolving interfaces
Before Java 8 evolving interfaces, e.g., adding new methods to
an interface, was not possible because such a
change would break
existing implementations. Java 8 introduced default methods, now you
can extend an
interface without breaking clients by simply suppling a
default implementation with it. Adding such a default
method is a
source an binary compatible change.
A class can always override a default method so supply a better
behavior.
1.
2.
3.
public interface A {
default void m() {}
}
public interface B {
default void m() {}
}
public class C implements A, B {
@Override
public void m() {}
}
In your implementation you can also call the super method you
prefer.
5.6.Functional interfaces
subclass.
To indicate to the reader of the source code and the Java compiler
that you have the intention to override a
method, you can use the
@Override annotation.
package com.vogella.javaintro.base;
class MyBaseClass {
@Override
public void hello() {
System.out.println("Hello from MyBaseClass");
}
}
package com.vogella.javaintro.base;
class MyExtensionClass2 extends MyBaseClass {
public void hello() {
System.out.println("Hello from MyExtensionClass2");
}
}
Tip:
It is good practice to always use the
@Override
annotation. This way the Java compiler
validates if you did override
all methods as intended and prevents errors.
7.2.Primitives
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
7.3.Reference types
change
the value of a
reference type variable, the variable points to a
different object or
to
null
which
represents the non-existing object reference.
Changing the
value
of a reference type variable does not change the
attributes
of
the
object is was pointing to.
Also changing the contents of an object
does
not affect
the value
of a
variable
referring to that
object.
Every
primitive type has in
Java
a fitting
reference type. This
reference
type allows to store the
value
of the
primitive
type in an
object. For
example you have
java.lang.Integer
for int.
Converting a
primitive value into
an instance
of a wrapper
type and
vice versa is
called
boxing / unboxing.
Java
performs these
operations
automatically of necessary. This allows you to use a primitive as
parameter in a method
which expects an object of the wrapper type.
This
automatic
boxing and unboxing
is
known
as
autoboxing.
8.2.Instance variable
8.3.Local variable
8.4.Methods
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
package com.vogella.javaintro.base;
public class MyMethodExample {
void tester(String s) {
System.out.println("Hello World");
}
}
8.5.Main method
8.6.Constructor
A class contains
constructors
that are invoked to create objects
based on the class definition.
package com.vogella.javaintro.base;
public class MyConstructorExample2 {
String s;
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
public MyConstructorExample2(String s) {
this.s = s;
}
}
If
no
explicit
constructor is defined,
the compiler implicitly adds
a
constructor. If
the class is
sub-classed, then the
constructor of the
super class is
always
called implicitly in this case.
package com.vogella.javaintro.base;
public class MyConstructorExample {
// unnecessary: would be created by the compiler if left out
public MyConstructorExample() {
}
}
The naming
convention for creating a constructor is
the following:
classname
(Parameter p1, ...) { }
.
9.Modifiers
9.1.Access modifiers
Table1.Access Level
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
Modifier
Class
Package
Subclass
World
public
protected
no modifier
private
9.2.Other modifiers
final methods: cannot be overwritten in a subclass
abstract method: no method body
10.Import statements
10.1.Usage of import statements
10.2.Static imports
The feature
provides a typesafe mechanism to
include constants
into code
without
having to reference the class
that
originally defined
the
field.
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
Class methods and class variables are associated with the class
and not
an instance of the class, i.e., objects. To
refer to these
elements, you can use the
classname and a dot (".") followed by the
class
method or class
variable
name.
package com.vogella.javaintro.base;
public class MyStaticExample {
static String PLACEHOLDER = "TEST";
static void test() {
System.out.println("Hello");
}
}
package com.vogella.javaintro.base;
public class Tester {
public static void main(String[] args) {
System.out.println(MyStaticExample.PLACEHOLDER);
MyStaticExample.test();
}
}
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
If a class has at least one method, which only contains the declaration
of
the method, but not the implementation,
then this class is
abstract
and
can not be instantiated. Sub-classes need then to define the
methods
except if
they are also declared as abstract.
package com.vogella.javaintro.base;
public abstract class MyAbstractClass {
abstract double returnDouble();
}
12.Cheat Sheets
Table2.
What to do
How to do it
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
in the
MyNewClass
class
package test;
public class MyNewClass
{
private String var1;
}
package test;
public class MyNewClass
{
private String var1;
public
MyNewClass(String
para1) {
var1 = para1;
// or this.var1=
para1;
}
}
package test;
public class MyNewClass
{
private String var1;
public
MyNewClass(String
para1) {
var1 = para1;
// or this.var1=
para1;
}
public void
doSomeThing() {
}
}
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
package test;
public class MyNewClass
{
private String var1;
public
MyNewClass(String
para1) {
var1 = para1;
// or this.var1=
para1;
}
public void
doSomeThing() {
}
public void
doSomeThing2(int a,
Person person) {
}
}
package test;
public class MyNewClass
{
private String var1;
public
MyNewClass(String
para1) {
var1 = para1;
// or this.var1=
para1;
}
public void
doSomeThing() {
}
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
public void
doSomeThing2(int a,
Person person) {
}
public int
doSomeThing3(String a,
String b, Person
person) {
return 5; // any
value will do for this
example
}
}
package test;
public class
MyOtherClass {
String myvalue;
Dog dog;
public String
getMyvalue() {
return myvalue;
}
public void
setMyvalue(String
myvalue) {
this.myvalue =
myvalue;
}
public Dog getDog() {
return dog;
}
public void
setDog(Dog dog) {
this.dog = dog;
}
}
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
Table3.
What to do
How to do it
String variable1;
Person person;
String array[];
var1 = 5;
pers1 = pers2;
ArrayList<Person> persons;
Person
Add three instance variables to it, one for storing the first
name of the person, one for storing the last name
and
one for storing
the age of the Person.
Add a
toString
method as described by the following codeing and solve
the TODO. This method is used to
convert the object to a
String representation.
@Override
public String toString() {
// TODO replace "" with the following:
// firstName + " " + lastName
return "";
}
14.2.Use constructor
called
setter
and
getter.
Change your
main
method so that you create one
Person
object
and use the setter method to change the last
name.
package exercises.exercise04;
class Person {
String firstname = "Jim";
String lastname = "Knopf";
int age = 12;
@Override
public String toString() {
return firstName + " " + lastName;
}
}
package exercises.exercise04;
public class Main {
public static void main(String[] args) {
Person person = new Person();
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
15.2.Use constructor
package com.vogella.javastarter.exercises1;
class Person {
String firstName;
String lastName;
int age;
public Person(String a, String b, int value) {
firstName = a;
lastName = b;
age=value;
}
@Override
public String toString() {
return firstName + " " + lastName;
}
}
package com.vogella.javastarter.exercises1;
public class Main {
public static void main(String[] args) {
Person p1 = new Person("Jim", "Knopf" , 12);
System.out.println(p1);
// reuse the same variable and assign a new object to it
Person p2 = new Person("Henry", "Ford", 104);
System.out.println(p2);
}
}
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
package com.vogella.javastarter.exercises1;
class Person {
String firstName;
String lastName;
int age;
public Person(String a, String b, int value) {
firstName = a;
lastName = b;
age = value;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
@Override
public String toString() {
return firstName + " " + lastName;
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
package com.vogella.javastarter.exercises1;
public class Main {
public static void main(String[] args) {
Person person = new Person("Jim", "Knopf", 21);
Person p2 = new Person("Jill", "Sanders", 20);
// Jill gets married to Jim
// and takes his name
p2.setLastName("Knopf");
System.out.println(p2);
}
}
package com.vogella.javastarter.exercises1;
public class Address {
private
private
private
private
private
String
String
String
String
String
street;
number;
postalCode;
city;
country;
package com.vogella.javastarter.exercises1;
class Person {
String firstName;
String lastName;
int age;
private Address address;
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
package com.vogella.javastarter.exercises1;
public class Main {
public static void main(String[] args) {
// I create a person
Person pers = new Person("Jim", "Knopf", 31);
// set the age of the person to 32
pers.setAge(32);
// just for testing I write this to the console
System.out.println(pers);
/*
* actually System.out.println always calls toString, if you do not
* specify it so you could also have written System.out.println(pers);
*/
// create an address
Address address = new Address();
// set the values for the address
address.setCity("Heidelberg");
address.setCountry("Germany");
address.setNumber("104");
address.setPostalCode("69214");
address.setStreet("Musterstr.");
// assign the address to the person
pers.setAddress(address);
// dispose reference to address object
address = null;
// person is moving to the next house in the same street
pers.getAddress().setNumber("105");
}
}
16.Java statements
The
if-then
statement is a control flow statement. A block of code is only
executed when the test specified by
the if part evaluates to
true .
The optional
else
block is executed when the
if
part evaluates to
false .
The following example code shows a class with two methods. The first
method demonstrates the usage of
if-then
and the second method demonstrates the usage of
if-then-else .
16.2.Switch
switch (expression) {
case constant1:
command;
break; // will prevent that the other cases or also executed
case constant2:
command;
break;
...
default:
}
// Example:
switch (cat.getLevel()) {
case 0:
return true;
case 1:
if (cat.getLevel() == 1) {
if (cat.getName().equalsIgnoreCase(req.getCategory())) {
return true;
}
}
case 2:
if (cat.getName().equalsIgnoreCase(req.getSubCategory())) {
return true;
}
}
16.3.Boolean Operations
&& and
|| are both Short Circuit Methods
which means that they
terminate once
the result of an evaluation is
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
already clear.
Example (true || ...)
is always true while (false
&& ...) always is always interpreted
as false . Usage:
( var !=null
&& var.method1() ... ) ensures that var is not
null before doing
the real
check.
Table4.Boolean
Operations
Description
==
&&
And
!=
a.equals(b)
a.equalsIgnoreCase(b)
17.Loops in Java
17.1.The for loop
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
Tip:
For arrays and collections there is also an enhanced for loop
available. This loop is covered
in the Array description.
while(expression)
{
// block of code to run
}
do
{
// block of code to run
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
} while(expression);
18.Arrays
18.1.Arrays in Java
package com.vogella.javaintro.array;
public class TestMain {
public static void main(String[] args) {
// declares an array of integers
int[] array;
// allocates memory for 10 integers
array = new int[10];
// initialize values
array[0] = 10;
// initialize second element
array[1] = 20;
array[2] = 30;
array[3] = 40;
array[4] = 50;
array[5] = 60;
array[6] = 70;
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
array[7] = 80;
array[8] = 90;
array[9] = 100;
}
}
for(declaration : expression)
{
// body of code to be executed
}
package com.vogella.javaintro.array;
public class TestMain {
public static void main(String[] args) {
// declares an array of integers
int[] array;
// allocates memory for 10 integers
array = new int[10];
// initialize values
array[0] = 10;
// initialize second element
array[1] = 20;
array[2] = 30;
array[3] = 40;
array[4] = 50;
array[5] = 60;
array[6] = 70;
array[7] = 80;
array[8] = 90;
array[9] = 100;
for (int i : array) {
System.out.println("Element at index " + i + " :"
}
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
+ array[i]);
}
}
19.Strings
19.1.Strings in Java
The
String
class represents character strings. All string literals, for example,
"hello", are implemented as
instances of this class. An instance of
this class is an object. Strings are immutable, e.g., an assignment
of
a new
value to a
String
object creates a new object.
Whenever a
String
object is created and gets a string literal
assigned, e.g., as in
String s = "constant" ,
the string pool is used. However, the
new
operator forces a new
String
copy to be allocated, for example, in
To compare the
String
objects
s1
and
s2 ,
use the
s1.equals(s2)
method.
A
String
comparison with
==
is incorrect, as
==
checks for object reference equality.
==
sometimes gives
the correct result, as Java uses a
String
pool. The
following example would work with
== .
This would work as expected.
String a = "Hello";
String b = "Hello";
if (a==b) {
// if statement is true
// because String pool is used and
// a and b point to the same constant
}
String a = "Hello";
String b = new String("Hello");
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
if (a==b) {
} else {
// if statement is false
// because String pool is used and
// a and b point to the same constant
}
Warning:
Therefore, you should always use the
equals()
method when you compare strings.
19.4.Working with Strings
The following lists the most common string operations.
Table5.
Command
Description
"Testing".equals(text1);
"Testing".equalsIgnoreCase(text1);
Define a new
String
with a variable length.
str.charat(1);
str.substring(1);
str.substring(1, 5);
str.indexOf("Test")
str.lastIndexOf("ing")
str.endsWith("ing")
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
str.startsWith("Test")
Returns true if
String
str starts with
String
"Test" .
str.trim()
str.replace(str1, str2)
str2.concat(str1);
str.toLowerCase()
/
str.toUpperCase()
str1 + str2
20.Lambdas
20.1.What are lambdas?
21.Streams
21.1.What are Streams in Java 8?
21.2.IntStream
Allow to create a stream of sequence of primitive int-valued
elements supporting sequential and parallel aggregate
operations.
package com.vogella.java.streams;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.IntStream;
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
package com.vogella.java.streams;
public class Task {
private String summary;
private int duration;
public Task(String summary, int duration) {
this.summary = summary;
this.duration = duration;
}
public String getSummary() {
return summary;
}
public void setSummary(String summary) {
this.summary = summary;
}
public int getDuration() {
return duration;
}
public void setDuration(int duration) {
this.duration = duration;
}
}
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
package com.vogella.java.streams;
import
import
import
import
import
java.util.ArrayList;
java.util.List;
java.util.Random;
java.util.stream.Collectors;
java.util.stream.IntStream;
22.Type Conversion
If you use variables of different types Java requires for certain
types an explicit conversion. The following gives
examples for this conversion.
22.1.Conversion to String
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
22.3.Double to int
int i = (int) double;
package test;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
public class ConvertDateToSQLDate {
private void convertDateToSQL(){
SimpleDateFormat template =
new SimpleDateFormat("yyyy-MM-dd");
java.util.Date enddate =
new java.util.Date("10/31/99");
java.sql.Date sqlDate =
java.sql.Date.valueOf(template.format(enddate));
}
public static void main(String[] args) {
ConvertDateToSQLDate date = new ConvertDateToSQLDate();
date.convertDateToSQL();
}
}
23.Schedule tasks
package schedule;
import java.util.TimerTask;
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
package schedule;
import java.util.Timer;
public class ScheduleTest {
public static void main(String[] args) {
Timer timer = new Timer();
// wait 2 seconds (2000 milli-secs) and then start
timer.schedule(new MyTask("Task1"), 2000);
for (int i = 0; i < 100; i++) {
// wait 1 seconds and then again every 5 seconds
timer.schedule(new MyTask("Task " + i), 1000, 5000);
}
}
}
Tip:
Improved job scheduling is available via the open source framework
quartz. See
http://www.onjava.com/lpt/a/4637
or
http://www.quartz-scheduler.org/
for an
explanation.
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]
Source activities.
if this article helped you. It will help to maintain our content and our Open
http://www.vogella.com/tutorials/JavaIntroduction/article.html[19/05/2015 12:56:34]