SlideShare a Scribd company logo
Diploma in Information Technology
Module VIII: Programming with Java
Rasan Samarasinghe
ESOFT Computer Studies (pvt) Ltd.
No 68/1, Main Street, Pallegama, Embilipitiya.
Contents
1. Introduction to Java
2. Features of Java
3. What you can create by Java?
4. Start Java Programming
5. Creating First Java Program
6. Java Virtual Machine
7. Basic Rules to Remember
8. Keywords in Java
9. Comments in Java Programs
10. Printing Statements
11. Primitive Data Types in Java
12. Arithmetic Operators
13. Assignment Operators
14. Comparison Operators
15. Logical Operators
16. If Statement
17. Ifโ€ฆ Else Statement
18. Ifโ€ฆ Else ifโ€ฆ Else Statement
19. Nested If Statement
20. While Loop
21. Do While Loop
22. For Loop
23. Reading User Input
24. Arrays
25. Two Dimensional Arrays
26. Objects and Classes
27. Java Classes
28. Java Objects
29. Methods with Return Value
30. Methods without Return Value
31. Method Overloading
32. Variable Types
33. Inheritance
34. Method Overriding
35. Access Modifiers
36. Packages
37. GUI Applications in Java
38. Java Applets
Introduction to Java
โ€ข Developed by Sun Microsystems (has merged
into Oracle Corporation later)
โ€ข Initiated by James Gosling
โ€ข Released in 1995
โ€ข Java has 3 main versions as Java SE, Java EE
and Java ME
Features of Java
๏ƒผ Object Oriented
๏ƒผ Platform independent
๏ƒผ Simple
๏ƒผ Secure
๏ƒผ Portable
๏ƒผ Robust
๏ƒผ Multi-threaded
๏ƒผ Interpreted
๏ƒผ High Performance
What you can create by Java?
โ€ข Desktop (GUI) applications
โ€ข Enterprise level applications
โ€ข Web applications
โ€ข Web services
โ€ข Java Applets
โ€ข Mobile applications
Start Java Programming
What you need to program in Java?
๏ƒผJava Development Kit (JDK)
๏ƒผMicrosoft Notepad or any other text editor
๏ƒผCommand Prompt
Creating First Java Program
public class MyFirstApp{
public static void main(String[] args){
System.out.println("Hello World");
}
}
MyFirstApp.java
Java Virtual Machine (JVM)
Java Virtual Machine (JVM)
1. When Java source code (.java files) is
compiled, it is translated into Java bytecodes
and then placed into (.class) files.
2. The JVM executes Java bytecodes and run
the program.
Java was designed with a concept of write once and
run anywhere. Java Virtual Machine plays the
central role in this concept.
Basic Rules to Remember
Java is case sensitiveโ€ฆ
Hello not equals to hello
Basic Rules to Remember
Class name should be a single word and it
cannot contain symbols and should be started
with a characterโ€ฆ
Wrong class name Correct way
Hello World HelloWorld
Java Window Java_Window
3DUnit Unit3D
โ€œFillFormโ€ FillForm
public class MyFirstApp{
public static void main(String[] args){
System.out.println("Hello World");
}
}
Basic Rules to Remember
Name of the program file should exactly match
the class name...
Save as MyFirstApp.java
Basic Rules to Remember
Main method which is a mandatory part of
every java programโ€ฆ
public class MyFirstApp{
public static void main(String[] args){
System.out.println("Hello World");
}
}
Basic Rules to Remember
Tokens must be separated by Whitespaces
Except ( ) ; { } . [ ] + - * /
public class MyFirstApp{
public static void main(String[] args){
System.out.println("Hello World");
}
}
Keywords in Java
Comments in Java Programs
Comments for single line
// this is a single line comment
For multiline
/*
this is
a multiline
comment
*/
Printing Statements
System.out.print(โ€œyour textโ€); //prints text
System.out.println(โ€œyour textโ€); //prints text
and create a new line
System.out.print(โ€œline onen line twoโ€);//prints
text in two lines
Primitive Data Types in Java
Keyword Type of data the variable will store Size in memory
boolean true/false value 1 bit
byte byte size integer 8 bits
char a single character 16 bits
double double precision floating point decimal number 64 bits
float single precision floating point decimal number 32 bits
int a whole number 32 bits
long a whole number (used for long numbers) 64 bits
short a whole number (used for short numbers) 16 bits
Variable Declaration in Java
Variable declaration
type variable_list;
Variable declaration and initialization
type variable_name = value;
Variable Declaration in Java
int a, b, c; // declares three ints, a, b, and c.
int d = 3, e, f = 5; // declares three more ints,
initializing d and f.
byte z = 22; // initializes z.
double pi = 3.14159; // declares an approximation
of pi.
char x = 'x'; // the variable x has the value 'x'.
Arithmetic Operators
Operator Description Example
+ Addition A + B will give 30
- Subtraction A - B will give -10
* Multiplication A * B will give 200
/ Division B / A will give 2
% Modulus B % A will give 0
++ Increment B++ gives 21
-- Decrement B-- gives 19
A = 10, B = 20
Assignment Operators
Operator Example
= C = A + B will assign value of A + B into C
+= C += A is equivalent to C = C + A
-= C -= A is equivalent to C = C - A
*= C *= A is equivalent to C = C * A
/= C /= A is equivalent to C = C / A
%= C %= A is equivalent to C = C % A
Comparison Operators
Operator Example
== (A == B) is false.
!= (A != B) is true.
> (A > B) is false.
< (A < B) is true.
>= (A >= B) is false.
<= (A <= B) is true.
A = 10, B = 20
Logical Operators
Operator Name Example
&& AND (A && B) is False
|| OR (A || B) is True
! NOT !(A && B) is True
A = True, B = False
If Statement
if(Boolean_expression){
//Statements will execute if the Boolean
expression is true
}
If Statement
Boolean
Expression
Statements
True
False
Ifโ€ฆ Else Statement
if(Boolean_expression){
//Executes when the Boolean expression is
true
}else{
//Executes when the Boolean expression is
false
}
Ifโ€ฆ Else Statement
Boolean
Expression
Statements
True
False
Statements
Ifโ€ฆ Else ifโ€ฆ Else Statement
if(Boolean_expression 1){
//Executes when the Boolean expression 1 is true
}else if(Boolean_expression 2){
//Executes when the Boolean expression 2 is true
}else if(Boolean_expression 3){
//Executes when the Boolean expression 3 is true
}else {
//Executes when the none of the above condition
is true.
}
Ifโ€ฆ Else ifโ€ฆ Else Statement
Boolean
expression 1
False
Statements
Boolean
expression 2
Boolean
expression 3
Statements
Statements
False
False
Statements
True
True
True
Nested If Statement
if(Boolean_expression 1){
//Executes when the Boolean expression 1 is
true
if(Boolean_expression 2){
//Executes when the Boolean expression 2 is
true
}
}
Nested If Statement
Boolean
Expression 1
True
False
Statements
Boolean
Expression 2
True
False
While Loop
while(Boolean_expression){
//Statements
}
While Loop
Boolean
Expression
Statements
True
False
Do While Loop
do{
//Statements
}while(Boolean_expression);
Do While Loop
Boolean
Expression
Statements
True
False
For Loop
for(initialization; Boolean_expression; update){
//Statements
}
For Loop
Boolean
Expression
Statements
True
False
Update
Initialization
Nested Loop
Boolean
Expression
True
False
Boolean
Expression
Statements
True
False
Reading User Input by the Keyboard
import java.io.*;
public class DemoApp{
public static void main(String [] args) throws IOException{
BufferedReader br = new BufferedReader(new
InputStreamReader(System.in));
System.out.print(โ€œEnter your text: โ€œ);
String txt = br.readLine();
System.out.println(โ€œYou have entered:โ€ + txt);
}
}
Arrays
10 30 20 50 15 35
0 1 2 3 4 5
Size = 6
Element Index No
An Array can hold many values in a same
data type under a single name
A single dimensional array
Building a Single Dimensional Array
// Creating an Array
DataType[] ArrayName = new DataType[size];
// Assigning values
ArrayName[index] = value;
ArrayName[index] = value;
โ€ฆโ€ฆ..
Building a Single Dimensional Array
char[] letters = new char[4];
letters[0] = โ€˜aโ€™;
letters[1] = โ€˜bโ€™;
letters[2] = โ€˜cโ€™;
letters[3] = โ€˜dโ€™;
0 1 2 3
a b c d
0 1 2 3
letters
letters
Values in an Array can access
by referring index number
Building a Single Dimensional Array
//using an array initializer
DataType[] ArrayName = {element 1, element 2,
element 3, โ€ฆ element n}
int[] points = {10, 20, 30, 40, 50}; 10 20 30 40
0 1 2 3
points
50
4
Manipulating Arrays
Finding the largest
value of an Array
Sorting an Array
15
50
35
25
10
2
1
5
4
3
1
2
3
4
5
Two Dimensional Arrays
10 20 30
100 200 300
0 1 2
0
1
int[][] abc = new int[2][3];
abc[0][0] = 10;
abc[0][1] = 20;
abc[0][2] = 30;
abc[1][0] = 100;
abc[1][1] = 200;
abc[1][2] = 300;
Rows Columns
Column Index
Row Index
Java Objects and Classes
Java Classes
Method
Dog
name
color
bark()
class Dog{
String name;
String color;
public Dog(){
}
public void bark(){
System.out.println(โ€œdog is barking!โ€);
}
}
Attributes
Constructor
Java Objects
Dog myPet = new Dog(); //creating an object
//Assigning values to Attributes
myPet.name = โ€œScoobyโ€;
myPet.color = โ€œBrownโ€;
//calling method
myPet.bark();
Methods
Method is a group of statements to perform a
specific task.
โ€ข Methods with Return Value
โ€ข Methods without Return Value
Methods with Return Value
public int num1, int num2){
int result;
if (num1 > num2){
result = num1;
}else{
result = num2;
}
return result;
}
Access modifier
Return type
Method name
parameters
Return value
Method body
Methods without Return Value
public void {
System.out.println(โ€œyour text: โ€œ + txt)
}
Access modifier
Void represents no return value
Method name
parameter
Method
body
Method Overloading
public class Car{
public void Drive(){
System.out.println(โ€œCar is drivingโ€);
}
public void Drive(int speed){
System.out.println(โ€œCar is driving in โ€ + speed +
โ€œkmphโ€);
}
}
Variable Types
Variables in a Class can be categorize into
three types
1. Local Variables
2. Instance Variables
3. Static/Class Variables
Local Variables
โ€ข Declared in methods,
constructors, or blocks.
โ€ข Access modifiers cannot
be used.
โ€ข Visible only within the
declared method,
constructor or block.
โ€ข Should be declared with
an initial value.
public class Vehicle{
int number;
String color;
static String model;
void Drive(){
int speed = 100;
System.out.print(โ€œvehicle
is driving in โ€œ + speed +
โ€œkmphโ€);
}
}
Instance Variables
โ€ข Declared in a class, but
outside a method,
constructor or any block.
โ€ข Access modifiers can be
given.
โ€ข Can be accessed directly
anywhere in the class.
โ€ข Have default values.
โ€ข Should be called using an
object reference to access
within static methods and
outside of the class.
public class Vehicle{
int number;
String color;
static String model;
void Drive(){
int speed = 100;
System.out.print(โ€œvehicle
is driving in โ€œ + speed +
โ€œkmphโ€);
}
}
Static/Class Variables
โ€ข Declared with the static
keyword in a class, but
outside a method,
constructor or a block.
โ€ข Only one copy for each
class regardless how
many objects created.
โ€ข Have default values.
โ€ข Can be accessed by
calling with the class
name.
public class Vehicle{
int number;
String color;
static String model;
void Drive(){
int speed = 100;
System.out.print(โ€œvehicle
is driving in โ€œ + speed +
โ€œkmphโ€);
}
}
Inheritance
class Vehicle{
//attributes and methods
}
class Car extends Vehicle{
//attributes and methods
}
class Van extends Vehicle{
//attributes and methods
}
Vehicle
Car Van
Method Overriding
class Vehicle{
public void drive(){
System.out.println(โ€œVehicle is drivingโ€);
}
}
class Car extends Vehicle{
public void drive(){
System.out.println(โ€œCar is drivingโ€);
}
}
Access Modifiers
Access
Modifiers
Same
class
Same
package
Sub class
Other
packages
public Y Y Y Y
protected Y Y Y N
No access
modifier
Y Y N N
private Y N N N
Packages
A Package can be defined as a grouping of
related types (classes, interfaces,
enumerations and annotations) providing
access protection and namespace
management.
//At the top of your source code
import <package name>.*;
import <package name>.<class name>;
GUI Applications in Java
โ€ข Abstract Window Toolkit
โ€ข Frame Class
โ€ข Layouts
โ€ข Label Class
โ€ข TextField Class
โ€ข Button Class
โ€ข Events
Abstract Window Toolkit
The Abstract Window Toolkit (AWT) is a
package of JDK classes for creating GUI
components such as buttons, menus, and
scrollbars for applets and standalone
applications.
import java.awt.*;
Frame Class
Frame myFrame = new Frame(โ€œMy Frameโ€);
myFrame.setSize(300,200);
myFrame.setVisible(true);
Layouts
myFrame.setLayout(new FlowLayout()); myFrame.setLayout(new GridLayout(2,3));
myFrame.setLayout(null);
Label Class
Label lbl = new Label("Hello World");
lbl.setBounds(120,40,120,25);
myFrame.add(lbl);
TextField Class
TextField txt = new TextField();
txt.setBounds(100,90,120,25);
myFrame.add(txt);
Button Class
Button btn = new Button("OK");
btn.setBounds(120,150,60,25);
myFrame.add(btn);
Events
An event is when something special happens within a
Graphical User Interface.
Things like buttons being clicked, the mouse moving,
text being entered into text fields, the program closing,
etc.. then an event will trigger.
How Events Handling Work?
Java Applets
An applet is a Java program that runs in a Web
browser.
Creating a Java Applet
import java.applet.*;
import java.awt.*;
public class HelloWorldApplet extends Applet {
public void paint (Graphics g) {
g.drawString ("Hello World", 25, 50);
}
}
<applet code="HelloWorldApplet.class" width="320"
height="120"></applet>
Write a Java Applet and
compile it
Embed it in a HTML file
The End
http://twitter.com/rasansmn

More Related Content

What's hot (20)

PPTX
Welcome to python workshop
Mukul Kirti Verma
ย 
PDF
Python revision tour i
Mr. Vikram Singh Slathia
ย 
PPSX
Programming with Python
Rasan Samarasinghe
ย 
PPTX
Python The basics
Bobby Murugesan
ย 
PDF
Python revision tour II
Mr. Vikram Singh Slathia
ย 
PDF
Javaz. Functional design in Java 8.
Vadim Dubs
ย 
PPT
02basics
Waheed Warraich
ย 
PPT
M C6java2
mbruggen
ย 
PPTX
Python programming
Ashwin Kumar Ramasamy
ย 
PPT
M C6java3
mbruggen
ย 
PPTX
03 and 04 .Operators, Expressions, working with the console and conditional s...
Intro C# Book
ย 
PPT
M C6java7
mbruggen
ย 
PPTX
Programming in C sesion 2
Prerna Sharma
ย 
PDF
Programming in C Session 1
Prerna Sharma
ย 
PDF
The Swift Compiler and Standard Library
Santosh Rajan
ย 
PPT
The Java Script Programming Language
zone
ย 
PPT
The JavaScript Programming Language
Raghavan Mohan
ย 
PDF
2 kotlin vs. java: what java has that kotlin does not
Sergey Bandysik
ย 
PPT
Javascript
vikram singh
ย 
PDF
Python unit 2 M.sc cs
KALAISELVI P
ย 
Welcome to python workshop
Mukul Kirti Verma
ย 
Python revision tour i
Mr. Vikram Singh Slathia
ย 
Programming with Python
Rasan Samarasinghe
ย 
Python The basics
Bobby Murugesan
ย 
Python revision tour II
Mr. Vikram Singh Slathia
ย 
Javaz. Functional design in Java 8.
Vadim Dubs
ย 
02basics
Waheed Warraich
ย 
M C6java2
mbruggen
ย 
Python programming
Ashwin Kumar Ramasamy
ย 
M C6java3
mbruggen
ย 
03 and 04 .Operators, Expressions, working with the console and conditional s...
Intro C# Book
ย 
M C6java7
mbruggen
ย 
Programming in C sesion 2
Prerna Sharma
ย 
Programming in C Session 1
Prerna Sharma
ย 
The Swift Compiler and Standard Library
Santosh Rajan
ย 
The Java Script Programming Language
zone
ย 
The JavaScript Programming Language
Raghavan Mohan
ย 
2 kotlin vs. java: what java has that kotlin does not
Sergey Bandysik
ย 
Javascript
vikram singh
ย 
Python unit 2 M.sc cs
KALAISELVI P
ย 

Viewers also liked (20)

PPSX
DITEC - E-Commerce & ASP.NET
Rasan Samarasinghe
ย 
PPSX
DITEC - Software Engineering
Rasan Samarasinghe
ย 
PPSX
DISE - Introduction to Software Engineering
Rasan Samarasinghe
ย 
PPSX
DIWE - Introduction to Web Technologies
Rasan Samarasinghe
ย 
PPSX
DITEC - Expose yourself to Internet & E-mail (second update)
Rasan Samarasinghe
ย 
PPSX
DITEC - Expose yourself to Internet & E-mail (updated)
Rasan Samarasinghe
ย 
PPSX
DITEC - Expose yourself to Internet & E-mail
Rasan Samarasinghe
ย 
PDF
SeminaronEmpoweringSMEsThroughICTIntervention (1)
Sainath P
ย 
PDF
Java book for beginners_first chapter
Aamir Mojeeb
ย 
PPTX
Drawing 1 Module
Fredrik Simons
ย 
PPTX
Network
Rachel Espino
ย 
PPSX
DISE - Programming Concepts
Rasan Samarasinghe
ย 
PPSX
DISE - OOAD Using UML
Rasan Samarasinghe
ย 
PPT
Basic Elements of Java
Prof. Erwin Globio
ย 
PPSX
DISE - Database Concepts
Rasan Samarasinghe
ย 
PPTX
1.3 computer system devices&peripherals
Frya Lora
ย 
PPTX
Monitoring web application response times, a new approach
Mark Friedman
ย 
PPTX
ASP.NET Presentation
Rasel Khan
ย 
PPSX
DITEC - Fundamentals in Networking
Rasan Samarasinghe
ย 
PPSX
DISE - Software Testing and Quality Management
Rasan Samarasinghe
ย 
DITEC - E-Commerce & ASP.NET
Rasan Samarasinghe
ย 
DITEC - Software Engineering
Rasan Samarasinghe
ย 
DISE - Introduction to Software Engineering
Rasan Samarasinghe
ย 
DIWE - Introduction to Web Technologies
Rasan Samarasinghe
ย 
DITEC - Expose yourself to Internet & E-mail (second update)
Rasan Samarasinghe
ย 
DITEC - Expose yourself to Internet & E-mail (updated)
Rasan Samarasinghe
ย 
DITEC - Expose yourself to Internet & E-mail
Rasan Samarasinghe
ย 
SeminaronEmpoweringSMEsThroughICTIntervention (1)
Sainath P
ย 
Java book for beginners_first chapter
Aamir Mojeeb
ย 
Drawing 1 Module
Fredrik Simons
ย 
Network
Rachel Espino
ย 
DISE - Programming Concepts
Rasan Samarasinghe
ย 
DISE - OOAD Using UML
Rasan Samarasinghe
ย 
Basic Elements of Java
Prof. Erwin Globio
ย 
DISE - Database Concepts
Rasan Samarasinghe
ย 
1.3 computer system devices&peripherals
Frya Lora
ย 
Monitoring web application response times, a new approach
Mark Friedman
ย 
ASP.NET Presentation
Rasel Khan
ย 
DITEC - Fundamentals in Networking
Rasan Samarasinghe
ย 
DISE - Software Testing and Quality Management
Rasan Samarasinghe
ย 
Ad

Similar to DITEC - Programming with Java (20)

PPT
Java Tut1
guest5c8bd1
ย 
PPT
Java Tutorial
Vijay A Raj
ย 
PPT
Java tut1
Ajmal Khan
ย 
PPT
Tutorial java
Abdul Aziz
ย 
PPTX
Basic_Java_02.pptx
Kajal Kashyap
ย 
PPSX
DIWE - Programming with JavaScript
Rasan Samarasinghe
ย 
PPT
Java tutorial PPT
Intelligo Technologies
ย 
PPT
Java tutorial PPT
Intelligo Technologies
ย 
PPTX
Introduction to Client-Side Javascript
Julie Iskander
ย 
PPT
Java teaching ppt for the freshers in colleeg.ppt
vvsofttechsolution
ย 
PPT
Java_Tutorial_Introduction_to_Core_java.ppt
Govind Samleti
ย 
PPT
Java Tutorial
ArnaldoCanelas
ย 
PPT
Javatut1
desaigeeta
ย 
PPT
Java tut1 Coderdojo Cahersiveen
Graham Royce
ย 
PPT
Java tut1
Sumit Tambe
ย 
PPT
Java tut1
Sumit Tambe
ย 
PPTX
CAP615-Unit1.pptx
SatyajeetGaur3
ย 
ODP
Synapseindia reviews.odp.
Tarunsingh198
ย 
PPT
Java Tutorial | My Heart
Bui Kiet
ย 
Java Tut1
guest5c8bd1
ย 
Java Tutorial
Vijay A Raj
ย 
Java tut1
Ajmal Khan
ย 
Tutorial java
Abdul Aziz
ย 
Basic_Java_02.pptx
Kajal Kashyap
ย 
DIWE - Programming with JavaScript
Rasan Samarasinghe
ย 
Java tutorial PPT
Intelligo Technologies
ย 
Java tutorial PPT
Intelligo Technologies
ย 
Introduction to Client-Side Javascript
Julie Iskander
ย 
Java teaching ppt for the freshers in colleeg.ppt
vvsofttechsolution
ย 
Java_Tutorial_Introduction_to_Core_java.ppt
Govind Samleti
ย 
Java Tutorial
ArnaldoCanelas
ย 
Javatut1
desaigeeta
ย 
Java tut1 Coderdojo Cahersiveen
Graham Royce
ย 
Java tut1
Sumit Tambe
ย 
Java tut1
Sumit Tambe
ย 
CAP615-Unit1.pptx
SatyajeetGaur3
ย 
Synapseindia reviews.odp.
Tarunsingh198
ย 
Java Tutorial | My Heart
Bui Kiet
ย 
Ad

More from Rasan Samarasinghe (14)

PPTX
Managing the under performance in projects.pptx
Rasan Samarasinghe
ย 
PPTX
Agile project management with scrum
Rasan Samarasinghe
ย 
PPTX
Introduction to Agile
Rasan Samarasinghe
ย 
PPSX
IT Introduction (en)
Rasan Samarasinghe
ย 
PPSX
Application of Unified Modelling Language
Rasan Samarasinghe
ย 
PPSX
Advanced Web Development in PHP - Understanding REST API
Rasan Samarasinghe
ย 
PPSX
Advanced Web Development in PHP - Understanding Project Development Methodolo...
Rasan Samarasinghe
ย 
PPSX
Advanced Web Development in PHP - Code Versioning and Branching with Git
Rasan Samarasinghe
ย 
PPSX
DIWE - Working with MySQL Databases
Rasan Samarasinghe
ย 
PPSX
DIWE - Using Extensions and Image Manipulation
Rasan Samarasinghe
ย 
PPSX
DIWE - File handling with PHP
Rasan Samarasinghe
ย 
PPSX
DIWE - Coding HTML for Basic Web Designing
Rasan Samarasinghe
ย 
PPSX
DIWE - Multimedia Technologies
Rasan Samarasinghe
ย 
PPSX
DISE - Introduction to Project Management
Rasan Samarasinghe
ย 
Managing the under performance in projects.pptx
Rasan Samarasinghe
ย 
Agile project management with scrum
Rasan Samarasinghe
ย 
Introduction to Agile
Rasan Samarasinghe
ย 
IT Introduction (en)
Rasan Samarasinghe
ย 
Application of Unified Modelling Language
Rasan Samarasinghe
ย 
Advanced Web Development in PHP - Understanding REST API
Rasan Samarasinghe
ย 
Advanced Web Development in PHP - Understanding Project Development Methodolo...
Rasan Samarasinghe
ย 
Advanced Web Development in PHP - Code Versioning and Branching with Git
Rasan Samarasinghe
ย 
DIWE - Working with MySQL Databases
Rasan Samarasinghe
ย 
DIWE - Using Extensions and Image Manipulation
Rasan Samarasinghe
ย 
DIWE - File handling with PHP
Rasan Samarasinghe
ย 
DIWE - Coding HTML for Basic Web Designing
Rasan Samarasinghe
ย 
DIWE - Multimedia Technologies
Rasan Samarasinghe
ย 
DISE - Introduction to Project Management
Rasan Samarasinghe
ย 

Recently uploaded (20)

PPTX
NeuroStrata: Harnessing Neuro-Symbolic Paradigms for Improved Testability and...
Ivan Ruchkin
ย 
PPTX
Quality on Autopilot: Scaling Testing in Uyuni
Oscar Barrios Torrero
ย 
PPTX
Iobit Driver Booster Pro 12 Crack Free Download
chaudhryakashoo065
ย 
PPTX
Java Native Memory Leaks: The Hidden Villain Behind JVM Performance Issues
Tier1 app
ย 
PDF
WholeClear Split vCard Software for Split large vCard file
markwillsonmw004
ย 
PPTX
IObit Uninstaller Pro 14.3.1.8 Crack Free Download 2025
sdfger qwerty
ย 
PPTX
A Complete Guide to Salesforce SMS Integrations Build Scalable Messaging With...
360 SMS APP
ย 
PDF
IDM Crack with Internet Download Manager 6.42 Build 41
utfefguu
ย 
PPTX
computer forensics encase emager app exp6 1.pptx
ssuser343e92
ย 
PDF
65811_Introducing the Fusion AI Agent Studio (1).pdf
g6129590
ย 
PPTX
Perfecting XM Cloud for Multisite Setup.pptx
Ahmed Okour
ย 
PPTX
IObit Driver Booster Pro 12.4-12.5 license keys 2025-2026
chaudhryakashoo065
ย 
PDF
Power BI vs Tableau vs Looker - Which BI Tool is Right for You?
MagnusMinds IT Solution LLP
ย 
PDF
Code Once; Run Everywhere - A Beginnerโ€™s Journey with React Native
Hasitha Walpola
ย 
PPTX
ERP - FICO Presentation BY BSL BOKARO STEEL LIMITED.pptx
ravisranjan
ย 
PDF
AWS Consulting Services: Empowering Digital Transformation with Nlineaxis
Nlineaxis IT Solutions Pvt Ltd
ย 
PPTX
CONCEPT OF PROGRAMMING in language .pptx
tamim41
ย 
PDF
GridView,Recycler view, API, SQLITE& NetworkRequest.pdf
Nabin Dhakal
ย 
PPTX
ManageIQ - Sprint 264 Review - Slide Deck
ManageIQ
ย 
PPTX
Cubase Pro Crack 2025 โ€“ Free Download Full Version with Activation Key
HyperPc soft
ย 
NeuroStrata: Harnessing Neuro-Symbolic Paradigms for Improved Testability and...
Ivan Ruchkin
ย 
Quality on Autopilot: Scaling Testing in Uyuni
Oscar Barrios Torrero
ย 
Iobit Driver Booster Pro 12 Crack Free Download
chaudhryakashoo065
ย 
Java Native Memory Leaks: The Hidden Villain Behind JVM Performance Issues
Tier1 app
ย 
WholeClear Split vCard Software for Split large vCard file
markwillsonmw004
ย 
IObit Uninstaller Pro 14.3.1.8 Crack Free Download 2025
sdfger qwerty
ย 
A Complete Guide to Salesforce SMS Integrations Build Scalable Messaging With...
360 SMS APP
ย 
IDM Crack with Internet Download Manager 6.42 Build 41
utfefguu
ย 
computer forensics encase emager app exp6 1.pptx
ssuser343e92
ย 
65811_Introducing the Fusion AI Agent Studio (1).pdf
g6129590
ย 
Perfecting XM Cloud for Multisite Setup.pptx
Ahmed Okour
ย 
IObit Driver Booster Pro 12.4-12.5 license keys 2025-2026
chaudhryakashoo065
ย 
Power BI vs Tableau vs Looker - Which BI Tool is Right for You?
MagnusMinds IT Solution LLP
ย 
Code Once; Run Everywhere - A Beginnerโ€™s Journey with React Native
Hasitha Walpola
ย 
ERP - FICO Presentation BY BSL BOKARO STEEL LIMITED.pptx
ravisranjan
ย 
AWS Consulting Services: Empowering Digital Transformation with Nlineaxis
Nlineaxis IT Solutions Pvt Ltd
ย 
CONCEPT OF PROGRAMMING in language .pptx
tamim41
ย 
GridView,Recycler view, API, SQLITE& NetworkRequest.pdf
Nabin Dhakal
ย 
ManageIQ - Sprint 264 Review - Slide Deck
ManageIQ
ย 
Cubase Pro Crack 2025 โ€“ Free Download Full Version with Activation Key
HyperPc soft
ย 

DITEC - Programming with Java

  • 1. Diploma in Information Technology Module VIII: Programming with Java Rasan Samarasinghe ESOFT Computer Studies (pvt) Ltd. No 68/1, Main Street, Pallegama, Embilipitiya.
  • 2. Contents 1. Introduction to Java 2. Features of Java 3. What you can create by Java? 4. Start Java Programming 5. Creating First Java Program 6. Java Virtual Machine 7. Basic Rules to Remember 8. Keywords in Java 9. Comments in Java Programs 10. Printing Statements 11. Primitive Data Types in Java 12. Arithmetic Operators 13. Assignment Operators 14. Comparison Operators 15. Logical Operators 16. If Statement 17. Ifโ€ฆ Else Statement 18. Ifโ€ฆ Else ifโ€ฆ Else Statement 19. Nested If Statement 20. While Loop 21. Do While Loop 22. For Loop 23. Reading User Input 24. Arrays 25. Two Dimensional Arrays 26. Objects and Classes 27. Java Classes 28. Java Objects 29. Methods with Return Value 30. Methods without Return Value 31. Method Overloading 32. Variable Types 33. Inheritance 34. Method Overriding 35. Access Modifiers 36. Packages 37. GUI Applications in Java 38. Java Applets
  • 3. Introduction to Java โ€ข Developed by Sun Microsystems (has merged into Oracle Corporation later) โ€ข Initiated by James Gosling โ€ข Released in 1995 โ€ข Java has 3 main versions as Java SE, Java EE and Java ME
  • 4. Features of Java ๏ƒผ Object Oriented ๏ƒผ Platform independent ๏ƒผ Simple ๏ƒผ Secure ๏ƒผ Portable ๏ƒผ Robust ๏ƒผ Multi-threaded ๏ƒผ Interpreted ๏ƒผ High Performance
  • 5. What you can create by Java? โ€ข Desktop (GUI) applications โ€ข Enterprise level applications โ€ข Web applications โ€ข Web services โ€ข Java Applets โ€ข Mobile applications
  • 6. Start Java Programming What you need to program in Java? ๏ƒผJava Development Kit (JDK) ๏ƒผMicrosoft Notepad or any other text editor ๏ƒผCommand Prompt
  • 7. Creating First Java Program public class MyFirstApp{ public static void main(String[] args){ System.out.println("Hello World"); } } MyFirstApp.java
  • 9. Java Virtual Machine (JVM) 1. When Java source code (.java files) is compiled, it is translated into Java bytecodes and then placed into (.class) files. 2. The JVM executes Java bytecodes and run the program. Java was designed with a concept of write once and run anywhere. Java Virtual Machine plays the central role in this concept.
  • 10. Basic Rules to Remember Java is case sensitiveโ€ฆ Hello not equals to hello
  • 11. Basic Rules to Remember Class name should be a single word and it cannot contain symbols and should be started with a characterโ€ฆ Wrong class name Correct way Hello World HelloWorld Java Window Java_Window 3DUnit Unit3D โ€œFillFormโ€ FillForm
  • 12. public class MyFirstApp{ public static void main(String[] args){ System.out.println("Hello World"); } } Basic Rules to Remember Name of the program file should exactly match the class name... Save as MyFirstApp.java
  • 13. Basic Rules to Remember Main method which is a mandatory part of every java programโ€ฆ public class MyFirstApp{ public static void main(String[] args){ System.out.println("Hello World"); } }
  • 14. Basic Rules to Remember Tokens must be separated by Whitespaces Except ( ) ; { } . [ ] + - * / public class MyFirstApp{ public static void main(String[] args){ System.out.println("Hello World"); } }
  • 16. Comments in Java Programs Comments for single line // this is a single line comment For multiline /* this is a multiline comment */
  • 17. Printing Statements System.out.print(โ€œyour textโ€); //prints text System.out.println(โ€œyour textโ€); //prints text and create a new line System.out.print(โ€œline onen line twoโ€);//prints text in two lines
  • 18. Primitive Data Types in Java Keyword Type of data the variable will store Size in memory boolean true/false value 1 bit byte byte size integer 8 bits char a single character 16 bits double double precision floating point decimal number 64 bits float single precision floating point decimal number 32 bits int a whole number 32 bits long a whole number (used for long numbers) 64 bits short a whole number (used for short numbers) 16 bits
  • 19. Variable Declaration in Java Variable declaration type variable_list; Variable declaration and initialization type variable_name = value;
  • 20. Variable Declaration in Java int a, b, c; // declares three ints, a, b, and c. int d = 3, e, f = 5; // declares three more ints, initializing d and f. byte z = 22; // initializes z. double pi = 3.14159; // declares an approximation of pi. char x = 'x'; // the variable x has the value 'x'.
  • 21. Arithmetic Operators Operator Description Example + Addition A + B will give 30 - Subtraction A - B will give -10 * Multiplication A * B will give 200 / Division B / A will give 2 % Modulus B % A will give 0 ++ Increment B++ gives 21 -- Decrement B-- gives 19 A = 10, B = 20
  • 22. Assignment Operators Operator Example = C = A + B will assign value of A + B into C += C += A is equivalent to C = C + A -= C -= A is equivalent to C = C - A *= C *= A is equivalent to C = C * A /= C /= A is equivalent to C = C / A %= C %= A is equivalent to C = C % A
  • 23. Comparison Operators Operator Example == (A == B) is false. != (A != B) is true. > (A > B) is false. < (A < B) is true. >= (A >= B) is false. <= (A <= B) is true. A = 10, B = 20
  • 24. Logical Operators Operator Name Example && AND (A && B) is False || OR (A || B) is True ! NOT !(A && B) is True A = True, B = False
  • 25. If Statement if(Boolean_expression){ //Statements will execute if the Boolean expression is true }
  • 27. Ifโ€ฆ Else Statement if(Boolean_expression){ //Executes when the Boolean expression is true }else{ //Executes when the Boolean expression is false }
  • 29. Ifโ€ฆ Else ifโ€ฆ Else Statement if(Boolean_expression 1){ //Executes when the Boolean expression 1 is true }else if(Boolean_expression 2){ //Executes when the Boolean expression 2 is true }else if(Boolean_expression 3){ //Executes when the Boolean expression 3 is true }else { //Executes when the none of the above condition is true. }
  • 30. Ifโ€ฆ Else ifโ€ฆ Else Statement Boolean expression 1 False Statements Boolean expression 2 Boolean expression 3 Statements Statements False False Statements True True True
  • 31. Nested If Statement if(Boolean_expression 1){ //Executes when the Boolean expression 1 is true if(Boolean_expression 2){ //Executes when the Boolean expression 2 is true } }
  • 32. Nested If Statement Boolean Expression 1 True False Statements Boolean Expression 2 True False
  • 40. Reading User Input by the Keyboard import java.io.*; public class DemoApp{ public static void main(String [] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.print(โ€œEnter your text: โ€œ); String txt = br.readLine(); System.out.println(โ€œYou have entered:โ€ + txt); } }
  • 41. Arrays 10 30 20 50 15 35 0 1 2 3 4 5 Size = 6 Element Index No An Array can hold many values in a same data type under a single name A single dimensional array
  • 42. Building a Single Dimensional Array // Creating an Array DataType[] ArrayName = new DataType[size]; // Assigning values ArrayName[index] = value; ArrayName[index] = value; โ€ฆโ€ฆ..
  • 43. Building a Single Dimensional Array char[] letters = new char[4]; letters[0] = โ€˜aโ€™; letters[1] = โ€˜bโ€™; letters[2] = โ€˜cโ€™; letters[3] = โ€˜dโ€™; 0 1 2 3 a b c d 0 1 2 3 letters letters Values in an Array can access by referring index number
  • 44. Building a Single Dimensional Array //using an array initializer DataType[] ArrayName = {element 1, element 2, element 3, โ€ฆ element n} int[] points = {10, 20, 30, 40, 50}; 10 20 30 40 0 1 2 3 points 50 4
  • 45. Manipulating Arrays Finding the largest value of an Array Sorting an Array 15 50 35 25 10 2 1 5 4 3 1 2 3 4 5
  • 46. Two Dimensional Arrays 10 20 30 100 200 300 0 1 2 0 1 int[][] abc = new int[2][3]; abc[0][0] = 10; abc[0][1] = 20; abc[0][2] = 30; abc[1][0] = 100; abc[1][1] = 200; abc[1][2] = 300; Rows Columns Column Index Row Index
  • 47. Java Objects and Classes
  • 48. Java Classes Method Dog name color bark() class Dog{ String name; String color; public Dog(){ } public void bark(){ System.out.println(โ€œdog is barking!โ€); } } Attributes Constructor
  • 49. Java Objects Dog myPet = new Dog(); //creating an object //Assigning values to Attributes myPet.name = โ€œScoobyโ€; myPet.color = โ€œBrownโ€; //calling method myPet.bark();
  • 50. Methods Method is a group of statements to perform a specific task. โ€ข Methods with Return Value โ€ข Methods without Return Value
  • 51. Methods with Return Value public int num1, int num2){ int result; if (num1 > num2){ result = num1; }else{ result = num2; } return result; } Access modifier Return type Method name parameters Return value Method body
  • 52. Methods without Return Value public void { System.out.println(โ€œyour text: โ€œ + txt) } Access modifier Void represents no return value Method name parameter Method body
  • 53. Method Overloading public class Car{ public void Drive(){ System.out.println(โ€œCar is drivingโ€); } public void Drive(int speed){ System.out.println(โ€œCar is driving in โ€ + speed + โ€œkmphโ€); } }
  • 54. Variable Types Variables in a Class can be categorize into three types 1. Local Variables 2. Instance Variables 3. Static/Class Variables
  • 55. Local Variables โ€ข Declared in methods, constructors, or blocks. โ€ข Access modifiers cannot be used. โ€ข Visible only within the declared method, constructor or block. โ€ข Should be declared with an initial value. public class Vehicle{ int number; String color; static String model; void Drive(){ int speed = 100; System.out.print(โ€œvehicle is driving in โ€œ + speed + โ€œkmphโ€); } }
  • 56. Instance Variables โ€ข Declared in a class, but outside a method, constructor or any block. โ€ข Access modifiers can be given. โ€ข Can be accessed directly anywhere in the class. โ€ข Have default values. โ€ข Should be called using an object reference to access within static methods and outside of the class. public class Vehicle{ int number; String color; static String model; void Drive(){ int speed = 100; System.out.print(โ€œvehicle is driving in โ€œ + speed + โ€œkmphโ€); } }
  • 57. Static/Class Variables โ€ข Declared with the static keyword in a class, but outside a method, constructor or a block. โ€ข Only one copy for each class regardless how many objects created. โ€ข Have default values. โ€ข Can be accessed by calling with the class name. public class Vehicle{ int number; String color; static String model; void Drive(){ int speed = 100; System.out.print(โ€œvehicle is driving in โ€œ + speed + โ€œkmphโ€); } }
  • 58. Inheritance class Vehicle{ //attributes and methods } class Car extends Vehicle{ //attributes and methods } class Van extends Vehicle{ //attributes and methods } Vehicle Car Van
  • 59. Method Overriding class Vehicle{ public void drive(){ System.out.println(โ€œVehicle is drivingโ€); } } class Car extends Vehicle{ public void drive(){ System.out.println(โ€œCar is drivingโ€); } }
  • 60. Access Modifiers Access Modifiers Same class Same package Sub class Other packages public Y Y Y Y protected Y Y Y N No access modifier Y Y N N private Y N N N
  • 61. Packages A Package can be defined as a grouping of related types (classes, interfaces, enumerations and annotations) providing access protection and namespace management. //At the top of your source code import <package name>.*; import <package name>.<class name>;
  • 62. GUI Applications in Java โ€ข Abstract Window Toolkit โ€ข Frame Class โ€ข Layouts โ€ข Label Class โ€ข TextField Class โ€ข Button Class โ€ข Events
  • 63. Abstract Window Toolkit The Abstract Window Toolkit (AWT) is a package of JDK classes for creating GUI components such as buttons, menus, and scrollbars for applets and standalone applications. import java.awt.*;
  • 64. Frame Class Frame myFrame = new Frame(โ€œMy Frameโ€); myFrame.setSize(300,200); myFrame.setVisible(true);
  • 65. Layouts myFrame.setLayout(new FlowLayout()); myFrame.setLayout(new GridLayout(2,3)); myFrame.setLayout(null);
  • 66. Label Class Label lbl = new Label("Hello World"); lbl.setBounds(120,40,120,25); myFrame.add(lbl);
  • 67. TextField Class TextField txt = new TextField(); txt.setBounds(100,90,120,25); myFrame.add(txt);
  • 68. Button Class Button btn = new Button("OK"); btn.setBounds(120,150,60,25); myFrame.add(btn);
  • 69. Events An event is when something special happens within a Graphical User Interface. Things like buttons being clicked, the mouse moving, text being entered into text fields, the program closing, etc.. then an event will trigger.
  • 71. Java Applets An applet is a Java program that runs in a Web browser.
  • 72. Creating a Java Applet import java.applet.*; import java.awt.*; public class HelloWorldApplet extends Applet { public void paint (Graphics g) { g.drawString ("Hello World", 25, 50); } } <applet code="HelloWorldApplet.class" width="320" height="120"></applet> Write a Java Applet and compile it Embed it in a HTML file

Editor's Notes

  • #21: double avg = 45.6567; System.out.println(String.format("%.2f", avg)); // rounds and limit 2 decimal places
  • #54: Void welcome() ///Hello world ///Void welcome(โ€œsamanโ€) ////Hello Saman