BasicJavaProgramming PDF
BasicJavaProgramming PDF
Hello and Welcome! This is an e-learning course on Basic Java Programming presented by the
Java Technical Competency Development Team. There are 7 modules in this e-learning
course.
1
Basic Java Programming
Introduction
Hello and Welcome! This is an e-learning course on Basic Java Programming presented by the
Java Technical Competency Development Team. There are 7 modules in this e-learning
course.
2
Course Objective
To introduce Java Architecture & appreciate basic syntax in Java Language
To illustrate how to make use of standard Java Class Library and create
reusable classes.
3
Basic Java Programming
4
Learning Outcomes
To refresh Object Oriented Concepts
Java is an Object-Oriented Language. So before learning java let us have a look on the
Object-Oriented Concepts.
5
Class and Object
What is a Class?
What is an Object?
What is an Object?
An object in the software world means a bundle of related variables and functions known as
methods.
Software objects are often used to model real-world objects you find in everyday life.
The real world objects and software objects share two characteristics :
1. State : condition of an item.
2. Behavior : Observable effects of an operation or event including its results.
State can be of two types : Active state which reflects the behavior and Passive State refers to
state which does not change
A class is a blueprint or prototype that defines the variables and the methods (or
funtions)common to all objects of a certain kind.
So a class is a definition of a set of data and methods. When memory space for this data is
actually allocated, we say that class is instantiated i.e an obeject is created.
6
Features of OOP
Abstraction:
The process of extracting the essential information and hiding the irrelevant details
Encapsulation:
The process of binding code and data together in the form of a capsule
Inheritance:
The feature by which one class acquires the properties and functionalities of another
class
Polymorphism:
The feature that allows the same interface to be used for a general set of actions
Abstraction is the process of exposing the relevant things and ignoring the irrelevant details. The easiest
way to understand and appreciate this concept of handling complexity is by studying the example of Globe,
a model/prototype of earth that is used by students to understand its geography. Globe provides only that
information that is required and if too much of information is mentioned in it i.e. streets, lakes etc, it becomes
too complex to comprehend. Hence Globe abstracts unwanted information and makes it easy to
comprehend the complex earth.
Encapsulation is the mechanism that binds together code and the data it manipulates, and keeps both safe
from outside interference and misuse. The data is not accessible to the outside world and only those
functions that are wrapped in the class can access it. These functions provide the interface between the
objects data and the program. The insulation of the data from the direct access by the program is called
data hiding.
In OOP, code and data are merged into an object so that the user of an object can never peek inside the
box. This is defined as encapsulation (i.e. Object is a capsule encapsulating data and behavior). All
communication to it is through messages (i.e function calls which we use to communicate to the object).
Messages define the interface to the object. Everything an object can do is represented by its message
interface. Therefore, we need not know anything about what is in the object when we use it.
Inheritance is the process by which one class acquires the properties and functionalities of another class.
This is important because it supports the concept of hierarchical classification.. Inheritance provides the
idea of reusability of code and each sub class defines only those features that are unique to it.
Polymorphism is a feature that allows one interface to be used for a general class of actions. An operation
may exhibit different behavior in different instances. The behavior depends on the types of data used in the
operation. It plays an important role in allowing objects having different internal structures to share the
same external interface. Polymorphism is extensively used in implementing inheritance.
7
Object Oriented Program State (Data) is kept
accessible only to a
set of functions.
Behavior of the
object is exposed
using methods.
Data Data
Function Function
An object communicates
with another object by
passing messages
(invoking methods)
Data Data
Function Function
One object interacts with another object by invoking methods on that object which helps
in achieving higher order of functionality.
One object invoking methods or another object is known as Message Passing. Also
known as Method Invocation.
8
Object Oriented Programming vs Procedural Programming
Procedural Programming Object Oriented Programming
Emphasis on algorithms, procedures Emphasis on Data; binding of data structures with
methods that operate on data
Real world is represented by logical entities Real world is represented by objects mimicking
and control flow. Tries to fit real life external entities. Allows modeling of real life
problem into procedural language problem into objects with state and behavior
In a given module, data and procedures are Data (State) is encapsulated effectively by methods
separate (Behavior)
Program modules are linked through Program modules are integrated parts of overall
parameter passing mechanism program. Objects interact with each other by
Message passing
Uses abstraction at procedure level Uses abstraction at class and object level
Passive and dumb data structures used by Active and intelligent data structures (object)
active methods encapsulates all passive procedures
Have a look on the Comparison between the Object Oriented programming and
Procedural Programming.
9
Basic Java Programming
10
Learning Outcomes
After completion of the module you will be able to Understand
The Java Architecture
11
Introduction to Java
A language developed by Sun Microsystems
A general-purpose language
High-level language
12
Features of Java
Object-oriented
Simpler language
Compared to earlier OO languages like C++, it is simple
Robust
Secure
Built -in security features like absence of pointers and confinement of the java program within its
runtime environment
Features of Java
Java is platform independent i.e Architecture Neutral / Portable (The idea behind it is:- Write once,
Run anywhere)
Java is an Interpreter based language. With Java, the program needs to be compiled only once, and the
code generated by the Java compiler can run on any platform. Java is platform independent at both the
source and the binary level.
Java can be easily ported on any type of system and irrespective of the operating system being used. Java
achieves this portability due to its feature of Implementation Independency.
Java is a secured programming language because it provides the user with a Virtual Firewall between the
applications and the computer thus ensuring that the data in the users system is protected by any
possible Infectious contents. This is achieved by confining the Java program within the Java Runtime
Environment.
Multithreading is the capability for a program to perform several tasks simultaneously within a
program. A good example of mutithreading would be one of the game software where the
GUI display, sound effect, timer control and score updating are happening within the same process
simultaneously. In network programming, a server can serve multiple clients at the same time
via mutithreading.
Java is designed for the distributed environment of the Internet. Java allows objects on two different
computers to execute procedures remotely. 13
Platform independence
Java is a language that is platform independent.
Once compiled, code will run on any platform without recompiling or any
kind of modification.
Once compiled, code will run on any platform without recompiling or any kind of
modification.
This is made possible by making use of a Java Virtual Machine commonly known as
JVM
14
Java Virtual Machine (JVM)
The source code of Java will be stored in a text file with extension .java
The .class file that is generated is the machine code of this processor.
The interface that the JVM has to the .class file remains the same irrespective of the
underlying platform.
The source code of Java will be stored in a text file with extension .java
The Java compiler compiles a .java file into byte code. Byte code is a binary language.
The .class file that is generated is the machine code of this processor.
The interface that the JVM has to the .class file remains the same irrespective of the
underlying platform.
15
Java Virtual Machine (JVM) (Contd)
The JVM interprets the .class file to the machine language of the underlying
platform.
The underlying platform processes the commands given by the JVM
The JVM interprets the .class file to the machine language of the underlying platform.
The underlying platform processes the commands given by the JVM
16
Java Architecture: JVM
Runtime
Hardware
Class Loader
The class loader loads all classes needed for the execution of a program. The class loader adds security by
separating the namespaces for the classes of the local file system from those imported from network
sources.
Once all the classes have been loaded, the memory layout of the executable file is determined. At this point
specific memory addresses are assigned to symbolic references and the lookup table is created.
Because memory layout occurs at runtime, the java technology interpreter adds protection against
unauthorized access into the restricted areas of code.
Java software code passes several tests before actually running on your machine. The JVM puts the code
through a bytecode verifier that tests the format of code fragments and checks code fragments for
illegal code ie code that forges pointers, violates access rights on objects, or attempts to change object
type.
The bytecode verifier makes four passes on the code in a program. It ensures that the code follows the
JVM specifications and does not violate system integrity. If the verifier completes all four passes
without returning an error message, then the following is ensured. The classes follow the class file
format of the JVM specification
There are no access restriction violations
The code causes no operand stack overflows or underflows
No illegal data conversions
17
Java Architecture- (Contd)
Garbage Collection : As the objects are dynamically allocated memory by
using new operator, they must be released for later reallocation.
Finalize : Finalize method is used when certain objects are required to perform
some action when they are destroyed.
By using this method, we can define specific actions that will occur when an object
is just about to be reclaimed by the garbage collector
when certain objects are required to perform some action when they are destroyed then
those actions can be added by
defining finalize() method. Java Run time calls that method whenever it is about to
recycle an object of that class.
The GC runs periodically, checking for objects that are no longer referenced by any
running state or indirectly
through other referenced objects. Right before an object is freed, the Java Run time
calls the finalize() method on that object.
18
Installing and using Java
Before we begin, something on installation
Java 2 SDK (v1.4 or higher)
Can be downloaded freely from http://java.sun.com
Also available in the intranet
For executing Java Programs Java 2 SDK Version 1.4 or higher Version needs to be
installed.
Java 2 SDK Can be downloaded freely from http://java.sun.com
19
Environment variables used by JVM
JAVA_HOME: Java Installation directory
This environment variable is used to derive all other env. variables used by JVM
In Windows: set JAVA_HOME=C:\jdk1.4.3
In UNIX: export JAVA_HOME=/var/usr/java
CLASSPATH
In Windows:
set PATH=%PATH%;%JAVA_HOME%\lib\tools.jar;.
In UNIX:
set PATH=$PATH:$JAVA_HOME/lib/tools.jar:.
PATH
Path variable is used by OS to locate executable files
In Windows: set PATH=%PATH%;%JAVA_HOME%\bin
In UNIX: set PATH=$PATH:$JAVA_HOME/bin
This approach helps in managing multiple versions of Java Changing JAVA_HOME will reflect on
CLASSPATH and PATH as well
Set these environment variables on the command prompt and type javac
Displays all the options of using javac
Do the Environmental variable settings by typing the given commands in the Command
Prompt and Type javac. It will display all the options of using javac as shown in the
diagram. If it says bad command or file name then check the path setting.
20
Source File Layout - Hello World
We will have the source code first
Important :
Take care!! cAsE of file name matters
A Java program file is an ordinary text file with . java extension. Java source files
are created in a plain text editor, or in an editor that can save files in plain ASCII
without any formatting characters. It contains one or more class definitions. In
Java all code must reside inside a class. Even the main method has to be in a
class.
Here in the example there is a class named HelloWorldApp which contains the main
method, which is the starting point of execution of the program.
Type the above code in any editor e.g notepad and save it as HelloWorldApp.java
The name of the file must be the same as the name of the public class [i.e
HelloWorldApp].
While saving the file using the text editor, make sure that the file is saved with
an extension .java and NOT as .java.txt.
If it does not say anything, and you get the prompt, then the compilation was
successful.
Compiling a Program
To compile the program, Open a command prompt , Go to the directory in which you
have saved your program execute the compiler, javac, specifying the name of the
source file on the command line.
The javac compiler creates a file called HelloWorldApp.class. This .class file is
nothing but the bytecode for the program. The bytecode is the intermediate
representation of your program that contains instructions the Java interpreter will
execute. Thus, the output of javac is not the code that can be directly executed.
22
To execute
Type in the command prompt
java HelloWorldApp
The result
Executing a Program
To actually run the program, you must use the Java interpreter, called java. To do so,
pass the class name at the command-line:
For Example: Type java HelloWorldApp
When the program is run, you get the output as shown in the Figure.
23
Compilation & Execution
Java Program (.java)
Have a look on the sequence of steps in compiling and executing a java program.
24
Best Practices
One .java file must contain only one class declaration
The name of the file must always be same as the name of the class
Stand alone Java program must have a public static void main defined
it is the starting point of the program.
Not all classes require public static void main
Let us see some best practices to be followed while writing Java Programs
25
Basic Java Programming
26
Learning Outcomes
After completion of the module you will be able to
Understand the basic constructs in Java
27
Java Keywords (For Reference Only)
The reserved keywords defined in the Java language
28
Data Types in Java
Java is a Strongly typed language
What is typecasting?
Reference type
Java is a strongly typed language, which means that all variables must first be declared
before they can be used.
The basic form of variable declaration is Variable Type followed by variable name. For
example int grossSalary;
Doing so tells your program that the variable named "grossSalary" exists and holds
numerical data[ i.e integer value]. A variable's data type determines the values it may
contain, plus the operations that may be performed on it.
The data types are of two types. They are primitive data types and reference data
types.
Primitive Data Types are predefined by the language and is named by a reserved
keyword. Example: int, float etc.
Reference Data types are often referred as non-primitive data types. Example: Objects
and Arrays. They are called as reference data types because, they are handled "by
reference"--in other words, the address of the object or array is stored in a variable of
reference data type and not the value directly. In contrast primitive types are handled
"by value"--the actual primitive values are stored in variables of primitive data types .
Type Casting is the process of assigning a value of one type to the variable of another
type. While assigning the value of var1 to var2, if both var1 and var2 are of different
data types and if the data types of var1 and var2 are compatible and var2 data type is
larger than var1 data type then java will perform the value conversion automatically else
it has to be done manually. We will be discussing more on Type Casting in the later part
of the presentation.
29
Primitive Data Types in Java
Integer data types Notes:
byte (1 byte) All numeric data types are signed
short (2 bytes) The size of data types remain the
int (4 bytes) same on all platforms (standardized)
Logical
boolean (1 byte) (true/false)
3. char data type in Java is 2 bytes because it uses UNICODE character set which covers all
known scripts and language in the world. By virtue of it, Java supports internationalization
30
Reference Types in Java
Objects, Arrays are accessed using reference variables in Java
Java does not support the explicit use of addresses like other languages
A reference type can be assigned null to show that it is not referring to any object
As discussed earlier, Reference Data types are non-primitive data types. Example:
Objects and Arrays. They are called as reference data types because, they are handled
"by reference"--in other words, the address of the object or array is stored in a variable
and not the value directly.
31
Variables in Java : Assignment & Declaration
Using primitive data types is similar to other languages
int count;
int max=100;
In Java, if a local variable is used without initializing it, the compiler will show an error
Variables must have a type int count
name
Variables must have a name
In any Java Program, the variable is the elementary unit of storing data. A variable can
be declared by using an identifier i.e the variable name and a data type. You can also
initialize a variable when it is declared.
In Java, before you use any variable, it should be declared. At the same time, In Java, if
a local variable is used without initializing it, the compiler will show an error. Other variables such
as member variables etc are assigned with the default values automatically.
According to Java coding standards, the class name should always start with an upper
case character. In case there is more than a word, each word should start with an
uppercase letter and there should not be any _ in between the words. The name of a
variable should be in lower case. In case there is more than a word, the first letter of
each word should be in upper case, starting from the second word
The best practice to be followed in declaring the variable is, Declare a variable in
program only when required. Do not declare variables upfront like in C.
32
Typecasting of Primitive Data Types
Automatic, non-explicit type changing is known as Conversion
Variable of smaller capacity can be assigned to another variable of bigger capacity
int i = 10;
double d;
d = i;
int i;
i = (int) d;
33
Widening and Narrowing
Widening conversions permitted in Java
From a byte to a short, an int, a long, a float, or a double
From a short to an int, a long, a float, or a double
From an int to a long, a float, or a double
From a long to a float, or a double
From a float to a double
Char -----------------|
Int ----------- long ----------- float ----------- double
Byte ------ Short -|
Narrowing Conversions allowed
From a byte to a char
From a short to a byte or a char
From a char to a byte or a short
From an int to a byte, a short, or a char
From a long to a byte, a short, a char, or an int
From a float to a byte, a short, a char, an int, or a long
From a double to a byte, a short, a char, an int, a long, or a float
Copyright 2005, Infosys 34 ER/CORP/CRS/LA10/003
Technologies Ltd Version 1.00
Type conversion that happens when Variable of smaller capacity assigned to variable
of bigger capacity forms widening.
Type conversion that happens when Variable of larger capacity assigned to variable of
smaller capacity forms Narrowing.
Narrowing is usually done through explicit cast.
Here are the permissible tasks that can be achieved through widening and narrowing.
34
Operators and Assignments
Arithmetic Operators:
OPERATOR OPERATION
+ Addition
- Subtraction
* Multiplication
/ Division
% Modulus
++ Incrment (Unary)
+= Addition assignment
-= Subtraction assignment
*= Multiplication assignment
/= Division assignment
%= Modulus assignment
-- Decrement
Operators
Java provides a fully featured set of operators. Most of the operators are evaluated from left to right. For
assignments associativity is from right-to-left. Operators are divided into groups such as, Arithmetic
operators, Bitwise operators, Relational Operators, Boolean Logical Operators and the Ternary
operator.
Arithmetic operators are used in mathematical expressions. Arithmetic operators defined in java are
listed in the given table. The operands of arithmetic operators must be numeric type. Others
except char type operands are not allowed. Char type operands are allowed because in java
Char type is a sub set of int datatype.
35
Operators and Assignments (Contd..)
The Bitwise operators:
OPERATOR OPERATION
| Bit wise OR
Bitwise operators defined in java are applied to the bits with in an integer types such
as long, int, short, char and byte. Bitwise operators defined in java are listed in the
given table
36
Operators and Assignments (Contd..)
Relational Operators:
OPERATOR OPERATION
== Equal to
!= Not Equal to
The outcome of relational operation is a Boolean value. The relational operators are
most frequently used in the expressions that control the if statement and the various
loop statements.
37
Operators and Assignments (Contd..)
Boolean Logical operators:
OPERATOR OPERATION
| Logical OR
|| Short-circuit OR
|= OR assignment
^= XOR assignment
== Equal to
!= Not equal to
?: Ternary if-then-else
Boolean Logical operators operate only on boolean operands. They combine two
boolean values to form a resultant boolean value.
Boolean Logical operators defined in java are listed in the given table
Let us see the operations of Logical AND and Short Circuit AND operators
The logical AND checks the condition of the first operand and also the second operand.
But the short-circuit AND checks the second operand only if the first operand returns
true, else it returns false. The difference between the logical OR and short-circuit OR is
similar to this.
38
Operators and Assignments (Contd..)
The ternary operator: ?
Example
int greatestNum=(num1>num2)?num1:num2;
Syntax
Expression1? Expression2:Expression3
39
Access Modifiers private and public
Data members are always kept private
It is accessible only within the class
The methods which expose the behavior of the object are kept public
However, we can have helper methods which are private
Access modifiers (public, private etc) will be covered in more details in the later
slides
How a member can be accessed is determined by the access specifier, that modifies its
declaration.
When a member of a class is modified by the public specifier, then that member can be
accessed by any other code.
When a member of a class is specified as private, then that member can only be
accessed by other members of its class.
When no access specifier is used, then by default the member of a class is public within
its own package, but cannot be accessed outside of its package.
Data members are always kept private i.e It is accessible only within the class
The methods which expose the behavior of the object are kept public. However, we
can have helper methods which are private
Access modifiers (public, private etc) will be covered in more detail in the later slides
40
Other Modifiers
Static
For class variables
For methods
Final
For class level/local variables
For methods
For class
Sometimes we want to define a class member that will be used independently of any object of that class. To
create such a member, precede its declaration with keyword static. When a member is declared static,
it can be accessed before any objects of its class are created and without reference to any object. Both
variables and methods can be declared as static.
main() is declared as static because it must be called before any objects exist.
Instance variables declared as static are global variables. When objects of its class are declared, no copy of
static variable is made. All instances of the class share the same static variable.
To do computation to initialize the static variables, we can declare a static block that gets executed exactly
once, when the class is first loaded.
Static methods and variables can be used independently of any object via class names
A variable can be declared as final. Doing so prevents its contents from being modified. This means we
must initialize a final variable when it is declared. Variables declared as final do not occupy memory on
a per-instance basis. Thus, a final variable is essentially a constant.
To disallow a method from being overridden, specify final as a modifier at the start of its declaration.
Methods declared as final can not be overridden.
To disallow a class from being inherited, precede final as the modifier in the class declaration. Declaring a
class as final declares all of its methods as final too.
41
Writing a class in Java
public class Student {
private int rollNo;
rollNo;
Data Members
private String name;
(State)
Student(){
//initialize data members
} Constructor
Student(String nameParam){
nameParam){
name = nameParam;
nameParam;
}
public int getrollNo (){
return rollNo;
rollNo;
Method (Behavior)
}
}
The main method may or may not be present depending on whether the class is a starter class
The class defines a new data type and this data type is used to create objects of that
type. class is an template for an object.
Class is like a container of Data members and Methods. A sample class is given here.
Where, student is the name of the class. Rollnumber and name forms the data
members and getrollnumber() forms the method that access the datamember. A
simple class definition will take the form of
class classname
{ variable1;
variable2;
Method1()
{ // Body of Method1.
}
Method2(parameters)
{ //Body of Method2.
}
}
Usually, data members will be kept private and methods accessing the data members
will be kept as public.
In student class two more methods are also defined Student() and Student(String
nameParam).
These methods are called as constructors, which are called when the objects are
created.
42
Creating Objects in Java
The new operator creates the object and returns a reference to it
Or
new keyword creates
Student obj2 = new Student(Jack); an object and returns
a reference to it
The new keyword is used to create new objects in Java. Creating an object involves
allocating memory to the object that is created.
If we just declare Student obj1, only a reference called obj1 of type Student is created.
No memory is allocated for the same. Its only when we use the new operator,
memory is allocated, and the reference points to the memory that is allocated to the
object.
When these statements are executed memory for the object is allocated, and the
reference variable obj1 points to the memory that is allocated to the object. i.e in the
case of Student obj1; obj1 will have the value null and once the new operator is
applied on obj1, obj1 will have the address allocated to the object.
43
Constructors
A constructor is a special method that is used to initialize a newly created object
Can be used to initialize the objects to required or default values at the time of object creation
It is not mandatory for the coder to write a constructor for the class
If no user defined constructor is provided for a class, compiler initializes member variables to its
default values. Examples:
numeric data types are set to 0
44
Constructors (Contd)
public class Student {
Student(){
rollNo=1;
name=abi;
Student(String nameParam){
name = nameParam;
return rollNo;
45
Main method
Static as it is called by the JVM
before any instantiation occurs
46
Scope of Variables in Java
SCOPE : Scope determines what objects are visible to other parts of the
program.
Defining a variable within a scope mean localizing that variable and protecting
it from unauthorized access / modification
Variables defined inside a method including parameters are visible only within
the method.
Instance variables have the scope of class in which they are defined.
Scope determines what objects are visible to other parts of the program.
A block defines a scope
Each time we start a new block, we create a new scope.
Defining a variable within a scope mean localizing that variable and protecting it from
unauthorized access / modification
There are two major scopes in Java CLASS and METHOD
Variables defined inside a method including parameters are visible only within the
method.
Instance variables have the scope of class in which they are defined.
Scope can be nested.
47
Control Structures in Java
Similar to the C Programming Language
Conditionals
if-else, else if statements
Loops
for
while
do-while
48
Arrays
An array is a data structure which defines an ordered collection of a fixed
number of homogeneous data elements
In Java, array are objects and can be of primitive data types or reference types
49
Arrays[Contd]
Declaring Arrays Variables
<elementType>[] <arrayName>;
or
<elementType> <arrayName>[];
where <elementType> can be any primitive data type or reference type
Example:
int IntArray[];
Pizza[] mediumPizza, largePizza;
Declaration of Arrays:
<elementType>[] <arrayName>;
or
<elementType> <arrayName>[];
where <elementType> can be any primitive data type or reference type
For Example:
int IntArray[]; declares IntArray which is an
integer Array
Pizza[] mediumPizza, largePizza; declares
mediumPizza and LargePizza arrays which can hold the elements of
type Pizza.
50
Arrays[Contd]
Constructing an Array
<arrayName> = new <elementType>[<noOfElements>];
Example:
IntArray = new int[10];
mediumPizza = new Pizza[5];
largePizza = new Pizza[2];
Declaration and Construction combined
int IntArray = new int[10];
Pizza mediumPizza = new Pizza[5];
As you are aware Arrays are reference data types. So when we declare array only
reference will be created. Actual Array object will be created, when you use new
keyword. Use the given syntax for creating Array object.
51
Arrays[Contd]
Initializing an Array
<elementType>[] <arayName> = {<arrayInitializerCode>};
Example:
int IntArray[] = {1, 2, 3, 4};
52
this keyword
this keyword can be used inside any method to refer to the current object.
Syntax is
this.member variable
this is always a reference to the object on which the method was invoked.
E.g:
class Rectangle{
int length;
int width;
Rectangle(int length,int width){
this.length=length;
this.length=length;
this.width=width;
this.width=width;
}
.
}
When a local variable has the same name as an instance variable, the local variable
hides the instance variable.
For example consider class Rectangle, with instance variables int length and int width
and with a constructor Rectangle(int length,int width). The constructor has to assign the
values in its formal parameters to the instance variables length and width. If it uses
length and width it will refer to the formal parameters only. So it will do the assignments
with the help of this operator as,
this.length=length;
this.width=width;
53
Method overloading (1 of 2)
More than one method within the same class having the same name but differing in method signature are
termed overloaded methods
- No of parameters
- Sequence of parameters
Ex.
Overloaded methods
void add (int a, int b)
Overloading is used while creating several methods that perform closely related
functions under different conditions within a class. The compiler will treat each of
these methods as different method.
More than one method within the same class having the same name
but differing in method signature are termed overloaded methods
Calls to overloaded methods will be resolved during compile time
It is Also known as static polymorphism
Argument list could differ via:
No of parameters
Data type of parameters
Sequence of parameters
The method return type has no effect in method overloading.
A class having two or more constructors is a special case of method overloading which
is constructor overloading.
54
Inheritance
When is a relationship exists between two classes, we use inheritance
The parent class is termed super class and the inherited class is the sub class
The keyword extends is used by the sub class to inherit the features of super class
Person is more generalised
class Person{
/*attributes and functionality of Person
defined*/
}
class Student extends Person{
/*inherits the attributes and functionalities
of Person and in addition add its own
specialties*/
} Student is a Person and is more
specialized
The parent class is termed super class and the inherited class is the sub class
The keyword extends is used by the sub class to inherit the features of super class
Using Inheritance, we can create a general class that defines the traits common to a set
of related items. This class can then be inherited by other specific classes, each adding
the things that are unique to it.
It inherits all of the instance variables and methods defined by the super class and adds
its own, unique elements.
Although a sub class includes all of the members of its super class it can not access
those members of the super class that have been declared as private.
A major advantage of inheritance is that once we have created a super class that
defines the attributes common to a set of objects, it can be used to create any number
of more specific subclasses.
A reference variable of a super class can be assigned to a reference to any sub class
derived from that super class 55
Inheritance
Parent
Child Child
56
Method overriding
superclass
Doctor
1)Surgeon
overrides 1)FamilyDoctor
worksAtHospital adds one new
treatPatient
method ie gives a instance variable
new definition to 2) Adds one new
the method method
2) Adds one new treatPatient()
method
FamilyDoctor
Surgeon
makesHouseCalls
subclasses
treatPatient()
giveAdvice()
makeIncision()
Calls treatPatient
Redefining a super class method in a sub class is called method method of the Doctor
overriding class
Overriding
57
Dynamic Binding
Can we do this?
Doctor obj = new Surgeon();
If a base class reference is used to call a method, the method to be invoked is decided
by the JVM, depending on the object the reference is pointing to
For example, even though obj is a reference to Doctor, it calls the method of Surgeon, as it
points to a Surgeon object
Can we do this?
Doctor obj = new Surgeon();
A reference to a super class can refer to a sub class object
Now when we say obj.treatPatient(), which version of the method is called?
It calls Surgeons version of the treatPatient method as the reference is pointing
to a Surgeon object
If a base class reference is used to call a method, the method to be invoked is decided
by the JVM, depending on the object the reference is pointing to
For example, even though obj is a reference to Doctor, it calls the method of
Surgeon, as it points to a Surgeon object
This is decided during run-time and termed dynamic or run-time polymorphism
So we can say method overridding as an example for runtime polymorphism and
method overloading as an example for compile time polymorphism.
58
super
What if the treatPatient method in the Surgeon class wants to do the
functionality defined in Doctor class and then perform its own specific
functionality?
treatPatient(){
super.treatPatient();
This calls the super class
//add code specific to Surgeon version of treatPatient() and then
comes back to do the sub-class
specific stuff
}
What if the treatPatient method in the Surgeon class wants to do the functionality
defined in Doctor class and then perform its own specific functionality?
The treatPatient method in the Surgeon class could be written as shown here. Here
super.treatPatient() calls the super class version of treatPatient() and then comes
back to do the sub-class specific stuff
Super has two general forms
1.Which calls super class constructor
Syntax is super(arg-list);
Super() must always be the first statement executed inside a sub class
constructor.
When a sub class calls super(), it is calling the constructor of its
immediate super class.
2. This second form is most applicable to situations in which member names of a sub
class hide members by the same name in the super class.
Syntax is super. member
Here member can be either a method or an instance variable.
59
Polymorphism
STATIC DYNAMIC
Have a look on the comparision between static polymorphism and dynamic or runtime
polymorphism.
60
Abstract
Consider a scenario where you consider a generalized class Shape which has
two subclasses Circle and Rectangle
calculateArea() method has been declared abstract in the super class ie the
method signature has been provided but the implementation has been
deferred abstract public void
Shape calculateArea();
Circle Rectangle
Copyright 2005, Infosys 61 ER/CORP/CRS/LA10/003
Technologies Ltd Version 1.00
Consider a scenario where you consider a generalized class Shape which has two
subclasses Circle and Rectangle
Circle and Rectangle have their own way to calculate area
So, Shape class cannot decide how to calculate the area
it only provides the guideline to the child classes that such a method should be
implemented in them
calculateArea() method has been declared abstract in the super class ie the method
signature has been provided but the implementation has been deferred
61
Abstract (Contd)
The abstract keyword can be used for method and class
If a class has one or more abstract methods declared inside it, the class must
be declared abstract
abstract class Shape{
//Class definition
}
62
Abstract (Contd)
abstract class Shape{
abstract public void calculateArea();
calculateArea();
public void setColor(){
setColor(){
//code to color the shape
}
}
Note:
An abstract class may also have concrete (complete) methods
For design purpose, a class can be declared abstract even if it does not contain any
abstract methods
63
abstract Rules to follow (Contd)
The following cannot be marked with abstract modifier
Constructors
Static methods
Private methods
To Conclude..
The abstract modifier can be applied to classes and methods.
Class when declared abstract
cannot be instantiated.
Abstract classes provide way to defer implementation to sub classes.
Method when declared Abstract
No implementation for a method. Only the signature of the method is defined.
Used to put some kind of compulsion on the class who inherits from this class. i.e., the
class who inherits MUST provide the implementation of the method else the subclass
will also become abstract
A method can be made abstract to defer the implementation. i.e., when you design the
class, you know that there should be a method, but you dont know the algorithm of that
method.
A class must be declared abstract if any of the following conditions is true:
The class has one or more abstract methods.
The class inherits one or more abstract methods (from an abstract parent) for
which it does not provide implementations.
The class declares that it implements an interface but does not provide
implementations for every method of that interface (we will soon come to
interfaces)
From design perspective, a class may be declared abstract even if it has no abstract
methods when it is felt that it is not required to create objects of that class
The final modifier applies to classes, methods, and variables. The meaning of final
varies from context to context, but the essential idea is the same.
A final class may not be sub classed.
If applied to a variable it means to say that the value is constant.
A final object reference variable may not be changed but the data owned by
the object that is referred as final can be changed.
A final method may not be overridden. This is done for security reasons and
these methods are used for optimization.
65
Interfaces in Java
Let us consider a design option: class Dog has been designed which is a sub-
class of Animal
Then what happens when we design a class Cat which extends Animal and is
also a Pet ? Should we repeat the Pet functionalities again in Cat class?
Let us consider a design option: class Dog has been designed which is a sub-class of
Animal
Dog is also a Pet and it needs the behaviors of a pet
So, should we place the functionalities of a Pet in class Dog?
Then what happens when we design a class Cat which extends Animal and is also a
Pet ? Should we repeat the Pet functionalities again in Cat class?
If we do so, Object oriented feature of reusability of code is not being followed
66
Interfaces in Java (Contd)
So what is the solution?
So class Dog now extends from 2 base classes Animal and Pet
This too will not work as Multiple Inheritance is not supported in Java
Animal Pet
Dog
67
Interfaces in Java (Contd)
Interface can rescue us
Animal Pet
extends
implements
Dog
68
Interfaces in Java (Contd)
All methods in an interface are implicitly public and abstract
The class which implements the interface needs to provide functionality for the
methods declared in the interface
A class needs to be declared abstract if at least one of the methods in the interface
is left undefined
Interfaces are defined in the same way as a class but with interface keyword instead of
class keyword.
Here Pet is an interface.
Class Dog implements Pet interface using the keyword implements.
69
Interfaces in Java (Contd)
An interface may define data members and these are implicitly public, final
and static
A class can extend only one class but implement any number of interfaces
An interface may define data members and these are implicitly public, final and static
An interface cannot have private or protected members
An interface can extend from one or many interfaces
A class can extend only one class but implement any number of interfaces
An interface can be declared as a member of a class or another interface. Such an
interface is a member interface or nested interface.
70
Interfaces in Java (Contd)
An interface cannot be instantiated
71
Abstract Class vs Interface design choice
Use an abstract class when a template needs to be defined for a group of sub-
classes
ensure that no objects need to be created from it
Use an interface when a role needs to be defined for other classes, regardless
of the inheritance tree of these classes
Use an abstract class when a template needs to be defined for a group of sub-classes
ensure that no objects need to be created from it
Use an interface when a role needs to be defined for other classes, regardless of the
inheritance tree of these classes
72
Anonymous Inner Classes
An inner class is a class defined within another class.
An inner class is a non-static nested class. It has access to all of the variables
and methods of its outer class.
73
Anonymous Inner Classes(Contd..)
class Outer {
int outer_x = 100;
void test() {
Inner inner = new Inner();
inner.display();
inner.display();
}
It is important to note that class Inner is known only within the scope of class Outer.
The Java compiler generates an error message if any code outside of class Outer
attempts to instantiate class Inner.
74
Anonymous Inner Classes(Contd..)
//Anonymous Inner class Demo
import java.applet.*;
java.applet.*;
import java.awt.event.*;
java.awt.event.*;
/*
< applet code = AnonymousInnerClassDemo
AnonymousInnerClassDemo width=200 height=100>
</applet>
*/
75
Java I/O Basics
Java programs perform I/O through streams.
Character Stream
In Byte stream at the top are two abstract classes : InputStream and OutputStream
In Character Stream at the top are two abstract classes : Reader and Wrier
In this package a class System is defined that encapsulates several aspects of the
run-time environment
76
Basic Java Programming
77
Learning Outcomes
After completion of the module you will be able to
Understand the concept of packages in Java
78
Packages in Java Why ? What ?
Just think of writing the code from the
scratch, each time you create an
application
Let us start with Packages in Java. Before looking into the topic in detail let us see what
is the need for a package?
Just think of writing the code from the scratch, each time you create an application.
Youll end up spending your precious time and energy and finally land up with huge
amounts of code with you!
79
Packages in Java Why ? What ? (Contd)
Reusability of code is one of the most
important requirements in the software
industry.
Reusability saves time, effort and also
ensures consistency.
Reusability of code is one of the most important requirements in the software industry.
Reusability saves time, effort and also ensures consistency
80
Concept of Packages
In Java, the code which can be reused by other programs is put into a
Package.
In Java, the code which can be reused by other programs is put into a Package.
The package declaration, if any, must be at the beginning of the source file. You can precede it
with white space and comments, but nothing else. Only one package declaration is permitted
The package statement defines a namespace in which classes are stored. It is nothing
but a directory, in which a class is defined. When the package name is omitted, it is put
into the default package, which has no name (i.e.. The current directory)
81
Features of Packages
Organize your classes into smaller units and make it easy to locate and use
Packages allow you to protect your classes, data and methods in a larger way
Packages Organize your classes into smaller units and make it easy to locate and use
the appropriate class file i.e., you can split up the classes logically.
Avoid naming conflicts since classes can be identified through Package name two
Packages allow you to protect your classes, data and methods in a larger way than on
a class-to-class basis.
82
Creating a Package
In Java Packages are created in the
following manner :
package package_name ;
package
packagemypackage
mypackage;;
public
public class
class Calculator
Calculator
{{
mypackage public
public int
intadd(int
add(intx,
x,int
inty)
y)
{{
class
Calculator return(
return( xx++ yy)) ;;
is inside the
package }}
}}
Creating a Package
To create a package, you put a class or an interface in it. To do this, you put a package
statement at the top of the source file in which the class or the interface is defined.
For example, the given code appears in the source file Calculator.java, puts the
Calculator class in the mypackage package:
The scope of the package statement is the entire source file, so all classes and
interfaces defined in Calulator.java are members of the myPackage package.
If you put multiple classes in a single source file, only one may be public, and it must
share the name of the source files base name. Only public package members are
accessible from outside the package. If you do not use a package statement, your class
or interface ends up in the default package, which is a package that has no name.
Generally speaking, the default package is only for small or temporary applications or
when you are just beginning development. Otherwise, classes and interfaces belong in
named packages.
Companies use their reversed Internet domain name in their package names, like,
com.company.package. Some companies now choose to drop the first element com.
Name collisions that occur within a single company need to be handled by convention
within that company, perhaps by including the region or the project name after the
company name, for example, com.infosys.bangalore.finacle.mobile
83
Compiling the Package
C:\JavaProgs>javac
C:\JavaProgs> javac -d
-d mypackage
mypackageCalculator.java
Calculator.java
ass
tor.cl
la
lcu
Ca
When the above command is executed, the compiler creates a folder called
mypackage in our JavaProgs directory and stores the Calculator.class into this
folder
84
Importing a Package
How can a class which is not a part of a package reuse the classes in the
package?
Use this class as <package_name>.<class_name>
import mypackage.mysubpackage.MyClass;
How can a class which is not a part of a package reuse the classes in the package?
Use this class as <package_name>.<class_name>
85
Importing a Package (Contd)
Two ways to import a package
Importing a specific Package Member
import mypackage.Calculator;
What about naming conflicts if two imported packages both have a class with the same
name?
Needs to be resolved using fully qualified name
Now you can refer to the Calculator class by its simple name:
To import all the members of a package (ie, all the classes, interfaces etc), we use the import statement with
the asterisk (*) wildcard character. For example import mypackage.*;
Now we can refer to any class or interface in the myPackage package by its short name:
Note: when we use *, only the classes and interfaces directly present in that package get imported. The
sub-packages or the classes/interfaces present within the sub-package do not get imported.
Classpath
It is a environmental variable, which contains the path for the default-working directory ie the present
directory(.) 86
The specific location that java compiler will consider, as the root of any package hierarchy is, controlled by
Importing + Creating a Package
While creating a package, care should be taken that the statement for creating
a package must be written before any other import statements
LEGAL ILLEGAL
While creating a package, which needs some other packages to be imported, the
package statement should be the first statement of the program, followed by the
import statement.
87
Source file layout -- revisited
Package statement should be the first
package mypackage; statement. It is optional
import java.awt.*;
java.awt.*;
import java.uti.*;
java.uti.*;
import statements are optional. There can be
any no of import statements.
class MyClass{
//attributes and functions
}
public class Demo{
//attributes and functions
} Any no of classes and interfaces but there can
be only one public class in a given .java file
88
Access Specifiers
Java provides access protection at 2 levels:
- Class/Interface level
- Member Level
public
private
protected
Top level class/interface can have only two access public or default access
A member access level is determined by the access specifier, that modifies its
declaration.
Javas access specifiers are public, private and protected. Java also defines a
default access level.
Top level class/interface can have only two access public or default access
89
Access Specifiers (2 of 3)
private only accessible within the class
protected similar to default with the addition that available to all child classes
ie even if child class is in a different package
90
Access Specifiers (3 of 3)
Keyword Applicable To Who can Access
private Data members and methods All members within the same
Class only
(No keyword, usually Data members, methods, classes and All classes in the same package
we call it default) interfaces
protected Data members and methods All classes in the same package
as well as all sub classes ie
even sub classes residing in a
different package
If a class data has to be accessed from outside, the access rights has to be checked at
two levels both the class level and the data member level
91
Standard Java Packages
java.lang
Contains classes that form the basis of the design of the programming language of Java.
You dont need to explicitly import this package. It is always imported for you.
The String class, System class, Thread class, Wrapper classes etc, belong to this package.
java.io
Input/Output operations in Java is handled by the java.io package.
java.util
Contains classes and interfaces that provide additional utility.
Example : creating lists, calendar, date etc.
92
Standard Java Packages (Contd)
java.net
This package provides classes and interfaces for TCP/IP network programming.
java.awt
This package is useful to create GUI applications.
java.applet
This package consists of classes that you need, to write programs to add more
features to a web page.
java.net
This package provides classes and interfaces for TCP/IP network
programming.
java.awt
This package is useful to create GUI applications.
java.applet
This package consists of classes that you need, to write applets.
93
Introduction to java.lang package
Most widely used Package
Integer, Byte, Short, Character, Boolean, Long, Float and Double are the
wrapper classes for the primitive data types.
System class holds a collection of static methods and variables. The standard
input, output and error output of Java run time are in the in, out, err variables.
Integer, Byte, Short, Character, Boolean, Long, Float and Double are the wrapper
classes for the primitive data types.
System class holds a collection of static methods and variables. The standard input,
output and error output of Java run time are in the in, out, err variables.
Security Manager is an abstract class that our subclasses can implement to create a
security manager.
94
Java.lang.Object class Compares two object
references
boolean equals(Object)
Class getClass() Represents an unique
ID for the object
int hashCode()
String toString()
Representsana string
Represents unique
message withobject
ID for the name of
the class that describe
the object
Class Object is the root of the class hierarchy. Every class has Object as a superclass.
All objects, including arrays, implement the methods of this class. Every class is a
descendant, direct or indirect, of the Object class. This class defines the basic state and
behavior that all objects must have, such as the ability to compare oneself to another
object, to convert to a string, to wait on a condition variable, to notify other objects that a
condition variable has changed, and to return the class of the object.
95
java.lang.String class
Present in java.lang package
Has overridden equals( ) method of the Object class that should be used to
compare the actual string values
Lot of other methods are available which are for the manipulation of characters
of the string.
Java.lang.String
Has overridden equals( ) method of the Object class that should be used to compare
the actual string values
Lot of other methods are available which are for the manipulation of characters of the
string.
96
java.lang.StringBuffer class
Present in java.lang package
The prime difference between String and StringBuffer class is that the
StringBuffer represents a string that can be dynamically modified.
String Buffer's capacity could be dynamically increased even though its initial
capacity is specified
java.lang.StringBuffer class
97
Wrapper Classes (1 of 2)
There are many generic methods that take in Objects and not primitive data
types as parameters.
We need some mechanism to convert the primitive data type to Objects to use
these generic methods
There are many generic methods that take in Objects and not primitive data types as
parameters.
We need some mechanism to convert the primitive data type to Objects to use these
generic methods
The wrapper classes in java.lang package help us to do this
Wrapper Class -> True Object Oriented implementation of the primitive data types
Here is an example for Wrapper Classes.
98
Wrapper Classes (2 of 2)
The table shows the primitive types & the wrapper classes present in the java.lang
package.
Wrapper class is constructed by passing the value to be wrapped into the appropriate
constructor.
99
java.util package
Java.util contains a wide assortment of classes and interfaces that support a
broad range of functionality.
ArrayList
Collections
HashMap
TreeMap
TreeSet
Vector
Random
java.util package
Java.util contains a wide assortment of classes and interfaces that support a broad
range of functionality.
Important classes of java.util package are :
Gregorian Calendar
ArrayList
Collections
HashMap
TreeMap
TreeSet
Vector
Random
100
Collections Framework
When do we use the Collection classes?
When flexibility is required in terms of growing and shrinking in size
The Java 2 platform includes a new collections framework. A collection is an object that
represents a group of objects. A collections framework is a unified architecture for
representing and manipulating collections, allowing them to be manipulated
independently of the details of their representation.
101
Collections Framework
All collection classes in the Java API implement any one of the three interfaces
List, Set, Map
There are six collection interfaces. The most basic interface is Collection. Three
interfaces that extend Collection are Set, List, and SortedSet. The other two collection
interfaces, Map and SortedMap, do not extend Collection, as they represent mappings
rather than true collections. However, these interfaces contain collection-view
operations, which allow them to be manipulated as collections.
All collection classes in the Java API implement any one of the three interfaces
List, Set, Map
List for A collection of objects where the element present at a particular index is
known
Set for A collection that doesnt allow duplicates
Map for A collection that provides a key-value capability
102
Collections Framework
KEY
Collection
extends
(interface)
implements
Set List
(interface) (interface)
SortedSet
(interface)
ArrayList LinkedList Vector
103
Collections Framework
KEY
extends
Map
implements
(interface)
SortedMap
(interface)
Properties
104
Collections Framework
The Collection interface provides important methods which are implemented
by the implementing classes in their own way
add()
remove()
isEmpty()
size()
contains()
The collection interface is the foundation upon which the collections framework is built.
105
Collections Framework
The Map interface similarly provides important methods which are
implemented by the implementing classes in their own way
clear()
get()
containsKey()
isEmpty()
size()
put()
remove()
106
Collections Framework
Enumeration and Iterator interface provides capability to iterate through a collection in a
standard manner independent of implementation
ArrayList or LinkedList could both be traversed in a similar way
Iterator has similar methods like the Enumeration and an additional method to optionally
remove the last element returned by the Iterator
hasNext()
next()
remove()
107
Collections Framework
StringTokenizer class is an implementation of Enumeration interface
108
Vectors
import java.util.*;
java.util.*;
class VectorDemo{
VectorDemo{
public static Vector v;
public static void printVector(Vector v){
Enumeration vEnum=
vEnum=v.elements();
v.elements();
while(vEnum.hasMoreElements()){
while(vEnum.hasMoreElements()){
System.out.print(vEnum.nextElement()+"
System.out.print(vEnum.nextElement()+" ");
}
}
public static void main(String[]
main(String[] args){
args){
v=new Vector(3);
v.add ("a");
v.add ("b");
v.add ("c");
printVector(v);
printVector(v);
}
}
Here is a simple example that shows how to work with the Collection Class Vector
which is a part of collections framework.
109
Basic Java Programming
110
Learning Outcomes
111
Exception Handling in Java
Consider the following Code
class ExceptionDemo
{ int n=0;
int e=16/n;
System.out.println(e);
System.out.println(e);
What happens when the above code is executed ? [Pause the Presentation and Try
Yourself]
An Exception is thrown
How to recover from this ? ( by handling it !)
The default handler, provided by the Java run time system handles the exceptions
which are not handled by the programmer. Such exceptions are referred to as
Uncaught Exceptions. The default handler handles the Uncaught Exceptions by
displaying a string describing the exception, prints the stack trace from the point at
which the exception occurred and terminates the program.
112
Exception Handling in Java (Contd)
An Exception is a run-time error
It is an event that occurs during the execution of a program that disrupts the
normal flow of instructions.
113
Exception Handling in Java (Contd)
When an error occurs, the program throws an exception
The exception object that is thrown contains information about the exception, including
its type and the state of the program when the error occurred.
E.g:
at ExceptionDemo.main(ExceptionDemo.java:5)
ArithmeticException : It is a subclass of Exception, which describes the type of the error happened.
The exception handler can attempt to recover from the error or, if it determines that the
error is unrecoverable, provide a gentle exit from the program.
A Java exception is an object that describes an exceptional (that is, error) condition,
that has occurred in a piece of code. When an exceptional condition arises, an object
representing that exception is created and thrown in the method that caused the error.
That method may choose to handle the exception itself, or pass it on. Either way, at
some point, the exception is caught and processed.
Exceptions can be generated by the Java run-time system, or they can be manually
generated by your code.
Exceptions thrown by Java relate to fundamental errors that violate the rules of the Java
language or the constraints of the Java execution environment. A new exception object
is thrown by the Java run-time system when it detects an error for example the attempt
to divide by zero. This exception is constructed by the Java run-time system itself. Thus
if an exception is thrown, the Java run-time system requires it to be caught in order to
run the program.
The exception generated by the system for the action Division by Zero in the sample
program discussed is:
Where,
ExceptionDemo is The class name
main is The method name
ExceptionDemo.java is The filename
java:5 is the Line number 114
Exception Handling in Java (Contd)
Java exception handling is managed via try, catch, throw, throws, and finally.
Program statements that you want to monitor for exceptions are contained
within a try block. If an exception occurs within the try block, it is thrown. Our
code can catch these exceptions that are automatically thrown by the Java
run-time system.
Java exception handling is managed via try, catch, throw, throws, and finally.
Program statements that you want to monitor for exceptions are contained within a try
block. If an exception occurs within the try block, it is thrown. Our code can catch these
exceptions that are automatically thrown by the Java run-time system.
To manually throw an exception we use the keyword throw. Any exception that is
thrown out of a method must be specified by a throws clause. Any code that absolutely
must be executed before a method returns is put in a finally block.
115
Exception Handling in Java (Contd)
The try statement identifies a block of statements within which an exception might be
thrown.
The catch statement must be associated with a try statement and identifies a block of
statements that can handle a particular type of exception. The statements are executed if
an exception of a particular type occurs within the try block.
The finally statement must be associated with a try statement and identifies a block of
statements that are executed regardless of whether or not an error occurs within the try
block.
The try statement identifies a block of statements within which an exception might be thrown.
The catch statement must be associated with a try statement and identifies a block of statements that can handle a
particular type of exception. The statements are executed if an exception of a particular type occurs within the try block.
The finally statement must be associated with a try statement and identifies a block of statements that are executed
regardless of whether or not an error occurs within the try block.
116
Exception Handling in Java (Contd)
Here's the general form of these statements:
try {
statement(s)
statement(s)
(exceptiontype
} catch (exceptiontype name) {
statement(s)
statement(s)
} finally {
statement(s)
statement(s)
117
Exception Handling in Java (Contd)
Program 1 Program 2
class Hello
class ExceptionalHello
{
{
public static void main (String args[])
args[])
{ public static void main (String args[])
args[])
/* Now let's say hello */ {
System.out.print("Hello
System.out.print("Hello); /* Now let's say hello */
System.out.println(args[0]);
try
}
{
}
System.out.println("Hello
System.out.println("Hello + args[0]);
}
catch (Exception e)
{
System.out.println("Hello whoever you are
are);
}
}
}
Consider Program 1
what will happen when you run the program without giving it any command line arguments? The
runtime system generates an exception, Exception in thread "main
java.lang.ArrayIndexOutOfBoundsException at Hello.main (at Line Number 7)
What happened was that since we didn't give Hello any command line arguments there wasn't
anything in args[0]. Therefore Java kicked back this not too friendly error message about an
"ArrayIndexOutOfBoundsException.
Usually we fix this problem by testing the length of the array before we tried to access its first
element. This worked well in this simple case, but this is far from the only such potential problem.
If you were to check for every possible error condition in each line of code, you would find your
code becoming bloated with more error checking than actual code. Moreover you then have to
start checking for errors in the error conditions.
The goal of exception handling is to be able to define the regular flow of the program in part of
the code without worrying about all the special cases. Then, in a separate block of code, you
cover the exceptional cases. This produces more legible code since you don't need to interrupt
the flow of the algorithm to check and respond to every possible strange condition. The runtime
environment is responsible for moving from the regular program flow to the exception handlers
when an exceptional condition arises.
In practice what you do is write blocks of code that may generate exceptions inside try blocks as
shown in Program 2. You try the statements that generate the exceptions. Within your try block
you are free to act as if nothing has or can go wrong. Then, within one or more catch blocks, you
write the program logic that deals with all the special cases.
118
The Hierarchy
Object
Throwable
Error Exception
. . Runtime Exception ..
..
At the very top level, we have the object class, which is the base class of all the classes
available in java. There is a class called Throwable, which inherits from the Object
class.
We have two branches from the Throwable class. One called the Error, and the other
called Exception.
The Error class defines exceptions or problems that are not expected to be caught
under normal circumstances by our program. Eg, memory error, hardware error, JVM
error etc.
On the other end, we have the Exception class, which represent exceptions which can
be handled by our program, and our program can recover from these exceptions using
the try-catch-finally block. RuntimeException is on subclass of the Exception class.
Exceptions of this type represent exceptions that occur at run time, and which cannot
be trapped at compile time. A very good example for the same is, DivideByZero
exception or NullPointerException.
119
Checked and Unchecked Exceptions
Checked Exceptions : The exceptions defined by java.lang that must be
included in a methods throws list if that method can generate one of these
exceptions and does not handle it itself.
ArithmeticException
ArrayIndexOutOfBoundsException
ClassCAstException
NegativeArraySizeException etc.
120
Exceptions and Errors
Exceptions are situations within the control of an application, that it should try
to handle
Errors indicate serious problems and abnormal conditions that most applications should not try to handle
When a dynamic linking failure or some other "hard" failure in the virtual machine occurs, the virtual machine
throws an Error. Typical Java programs should not catch Errors. In addition, it's unlikely that typical Java
ClassFormatError
InternalError
LinkageError
OutOfMemoryError
StackOverflowError
UnknownError
Exceptions are situations within the control of an application, that it should try to handle
ClassCastException
IllegalStateExecption
121
IndexOutOfBoundsException
Try Catch - Finally
To guard against and handle a run-time error, simply enclose the code that you
suspect of an exception being thrown, inside a try block. Immediately following
the try block, include a catch clause that specifies the exception type that is to
be caught.
Once an exception is thrown, program control is passed out of the try block into the
catch block. Once the catch statement has executed, program control continues with
the next line of the program following the try/catch signature.
A try and catch statement work in tandem or together. A try block is always followed by
a catch block, which handles or catches the exception. A catch block always monitors
the preceding try block. The catch block is not executed if no exception is thrown
122
Try Catch Finally- (Contd..)
Multiple Exceptions
If there are multiple exception classes that might arise in the try block,
then several catch blocks are allowed to handle them separately, each
handling different exception type. After one catch statement executes,
the others are bypassed, and execution continues after the try/catch
block.
If there are multiple exception classes that might arise in the try block, then several
catch blocks are allowed to handle them separately, each handling different exception
type. After one catch statement executes, the others are bypassed, and execution
continues after the try/catch block.
123
Try Catch Finally- (Contd..)
public class MultipleCatchExample{
MultipleCatchExample{
public static void main(String argx[])
argx[]) {
try{
int e=argx.length
e=argx.length;
argx.length;
int f=20/e;
int g[]={1};
g[20]=81;
}
catch(ArithmeticException ae)
ae) {
System.out.println("Divided by zero"+ae);
zero"+ae);
}
catch(ArrayIndexOutOfBoundsException oe)
oe) {
System.out.println("Array index out of bound"+oe);
bound"+oe);
}
System.out.println("After Try and Catch blocks");
}
}
i.e
int g[]={1};
g[20]=81;
Statements in the Try block are skipped and the catch statement for
ArrayIndexOutOfBoundsException is bypassed.
124
Try Catch Finally- (Contd..)
Nesting the Try - Catch
The try statements can be nested. Each time a try statement does not
have a catch handler for a particular exception, the stack is unwound and
the next try statements catch handlers are inspected for a match. If no
catch statement matches, then the java run-time system will handle the
exception.
The try statements can be nested. Each time a try statement does not have a catch
handler for a particular exception, the stack is unwound and the next try statements
catch (ie parent try statements catch) handlers are inspected for a match. If no
catch statement matches, then the java run-time system will handle the exception.
125
Try Catch Finally- (Contd..)
class NestedTryExample{
NestedTryExample{
public static void main(String argx[]){
argx[]){
try{
int a=argx.length
a=argx.length;
argx.length;
int b=20/a;
System.out.println("a="+a);
System.out.println("a="+a);
try {
if(a==1){
if(a==1){
a=a/(a-
a=a/(a-a);
}
if(a==2){
if(a==2){
int c[]={1};
c[22]=99;
}
}
catch(ArrayIndexOutOfBoundsException oe){
oe){
System.out.println("Array index out of bounds");
} }
catch(ArithmeticException ae){
ae){
System.out.println("Divide by 0");
}
}
}
Pause the presentation and try the given code and Analyse the result.
126
Finally Block
The finally statement is associated with a try statement and identifies a block of
statements that are executed regardless of whether or not an exception occurs
within the try block.
The finally statement is associated with a try statement and identifies a block of
statements that are executed regardless of whether or not an exception occurs within
the try block.
When an exception occurs, it is executed after the handler if any or before propagation
as the case may be
127
Finally Block-(Contd)
The circumstances that prevent execution of the code in a finally block are:
The death of a Thread (Threads will be discussed later)
An exception in the finally block, exactly behaves like any other exception.
The circumstances that prevent execution of the code in a finally block are:
The death of a Thread
Using of the System.exit() method.
Due to an exception arising in the finally block.
An exception in the finally block, exactly behaves like any other exception.
128
Finally Block-(Contd)
public class ExceptionDemoProgram{
ExceptionDemoProgram{
try{
int i=Integer.parseInt(args[0]);
int c=i/i
c=i/i;
i/i;
catch(ArithmeticException e){
System.out.println("ArithmeticException:"+e);
System.out.println("ArithmeticException:"+e);
finally{
System.out.println("inside finally");
System.out.println("End Statement");
Pause the presentation and Try and analyze the given code with and with out command
line argument values.
129
Throwing Exceptions
Use the throw clause to throw an exception
If you attempt to throw an object that is not throwable, the compiler refuses to
compile your program
There is an important reason why the throw statement and the construction of the
exception are normally combined. The exception builds information about the point at
which it was created, and that information is shown in the stack trace when the
exception is reported. It is convenient if the line reported as the origin of the exception
is the same line as the throw statement, so it is a good idea to combine the two parts,
and throw new exception() becomes the norm.
130
Throws
The throws keyword is used along with the declaration of a method that can
throw an exception.
When defining a method you must include a throws clause to declare those
If you call me, you must handle these exceptions that I throw.
Throws
The throws clause in the method header tells the compiler that we know this exception may occur and if it
does, the exception should be thrown to the caller of this method instead of crashing the program. The
throws clause is placed after the parameter list and before the opening brace of the method. If more
than one type of checked exception needs to be declared, separate the class names with commas.
A throws clause lists the types of exceptions that a method might throw. It is a general rule that any method
that might throw an exception must declare the fact.
131
User defined exceptions
We can create our own exception objects, which can be thrown using the throw
keyword
Create a class which extends the Exception class [this is our user-defined
exception class, that we want to throw]
We can create our own exception objects, which can be thrown using the throw
keyword. Such exceptions are User defined Exceptions.
To have user defined exceptions, create a class which extends the Exception class.
Create an instance of the user-defined exception class.
Use the throw keyword to throw the instance created.
132
User defined exceptions (Contd)
class MyEx extends Exception{
MyEx(String msg){
msg){
super(msg);
super(msg);
}
}
public class UserdefinedException{
UserdefinedException{
public static void main(String[]
main(String[] args){
args){
int i=args.length
i=args.length;
args.length;
try{
if(i==0){
if(i==0){
throw new MyEx("Arguments Not Available");
}
}
catch(MyEx e){
System.out.println(e);
System.out.println(e);
}
}
}
133
Basic Java Programming
Module 6 : Applets
134
Learning Outcomes
After completion of the module you will be able to Understand
What are Applets
135
Applets
A Java class that can be embedded within a HTML page and downloaded
and executed by a web browser
An Applet is a small application that can be embedded within a HTML page and
downloaded and executed by a web browser.
An applet can be used to enhance the features of a Web Page
The applet runs on JVM embedded in the browser
136
Applets
Applet is a container class that is available in java.applet package
While writing Applets we have to import applet package which contains Applet class.
Every applet that you create must be a subclass of Applet class.
137
Lifecycle of an Applet
init( )
Start State
start( )
Draw/Redraw Applet
Applet
Working paint( )
Applet
Displayed stop( )
Destroy
Idle Applet
State destroy( )
Applet
Destroyed
Copyright 2005, Infosys 138 ER/CORP/CRS/LA10/003
Technologies Ltd Version 1.00
The methods init( ), start( ), stop( ) and destroy( ) defined in Applet class and paint()
method defined in AWT Component class forms the life cycle methods of an applet.
138
Lifecycle of an Applet (Contd)
The browser calls the init method of the Applet, followed by the start method
If the users leaves the web page, the browser will call the stop method of the
Applet
The browser calls the init method of the Applet, followed by the start method
If the users leaves the web page, the browser will call the stop method of the Applet
139
Lifecycle of an Applet (Contd)
If the user comes back to the page the browser will call the start method of the
Applet again
The destroy method is called just before the applet is finally unloaded from
memory
If the user comes back to the page the browser will call the start method of the Applet
again
The destroy method is called just before the applet is finally unloaded from memory
Paint method is called whenever the applets output must be redrawn.
140
Execution of an applet
Compile the applet program, say MyApplet.java, to get the .class file,
MyApplet.class
Code, width and height are mandatory attributes for the applet tag
In order to execute the applet, Compile the applet program, say MyApplet.java, to get
the .class file, MyApplet.class
Embed the applet tags in a html file as shown here.
Code, width and height are mandatory attributes for the applet tag
Use any java compatible browser to run the html file
141
Execution of an applet (Contd)
For testing an Applet, we can use the appletviewer tool which is in
<javahome>\bin directory
Type the applet tag alone in a file, say applet.txt, and type the following
command
appletviewer applet.txt
For testing an Applet, we can use the appletviewer tool which is in <javahome>\bin
directory
Type the applet tag alone in a file, say applet.txt, and type the command appletviewer
applet.txt in command prompt
Instead of creating a separate file, the applet tag can be included as a comment in
MyApplet.java file itself. Then type the command appletviewer MyApplet.java in
command prompt
The appletviewer tool will open a window to display the Applet
Other optional attributes of <applet> tag are:
1. CODEBASE which contains the URL directory, required if the .class file is in some
other location from which the html file will be run
2. HSPACE which specifies horizontal spacing in pixels
3. VSPACE which specifies vertical spacing in pixels
4. ALT which specifies alternate text to be displayed in case applet is not loaded
5. PARAM to pass parameters in to an applet
142
Parameter passing to an applet
Parameters are passed into an applet as name-value pair using the param
tag within applet tag
<applet code="ParameterApplet" width=200 height=200>
</applet>
Parameters are passed into an applet as name-value pair using the param tag within
applet tag as shown here.
The values are passed as String values
getParameter (String parameterName) in the applet code returns the value
143
Basic Java Programming
144
Learning Outcomes
After completion of the module you will be able to
Understand the need for Swing Programming
145
SWING : Basic Concepts
Swing is a set of classes that provides more powerful and flexible GUI
components
AWT translates its various visual components into their corresponding platform
specific equivalents
Swing is a set of classes that provides more powerful and flexible GUI components
Swing is a response to the problems faced by AWT.
The problem with AWT is that, AWT components are heavyweight components. The
reason is, AWT translates its various visual components into their corresponding
platform specific equivalents. i.e AWT components use native code resources.
Java Swings provides solution to this problem. How the solution is provided? The
answer is the Components of swings are written entirely in Java and the look and feel
of the components are determined entirely by Swings and not by underlying platform
146
Features of Swing
Lightweight Components
Swing components are written entirely in Java and do not map directly to platform-
specific peers.
Look and Feel of each component is determined by Swing and not by underlying OS
Possible to define a look and feel that is consistent across all platforms
The Swing components are light weight components which means, Swing components
are written entirely in Java and do not map directly to platform-specific peers. Look and
Feel of each component is determined by Swing and not by underlying OS. Look and
Feel of Swings are said to be pluggable. The reason is, It is possible to separate the
look and feel of a component from the logic.
147
Features of Swing (Contd)
148
MVC and Swing
Visual Component is composite of three distinct aspects :
The way that component looks when rendered on screen
SWING uses a modified version of MVC that combines the view and controller into a
single logical entity called UI delegate.
The Model contains a field that indicates whether the box is checked or unchecked
The View represents display on the screen including any aspects of the view that are
affected by the current state of the model
And when the user clicks a check box, controller reacts by changing the model to
reflects the user choice, which results in view being modified.
SWING uses a modified version of MVC that combines the view and controller into a
single logical entity called UI delegate.
Therefore SWINGs approach is called either Model-Delegate architecture or 149
Separable Model Architecture.
MVC Architecture
Swing architecture implements MVC
MVC
Model - represents the data in the application
View - represents the presentation of data
Controller - communicates between the model and view
M C
Copyright 2005, Infosys 150 ER/CORP/CRS/LA10/003
Technologies Ltd Version 1.00
150
Working with Swings
import javax.swing.*;
JFrame.setDefaultLookAndFeelDecorated(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(jl1);
frame.pack();
frame.setVisible(true);
Let us start our discussion on Swings with the simple example. The given program will
display a Frame titled Frame Demo with a Label displaying Welcome to
Swing Programming.
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
This makes the program exit when the Close button is clicked on the frame.
151
JLabel jl1=new JLabel("Welcome to Swing Programming");
Executing a Simple Swing Application(Contd.)
Swing programs are compiled and run in the same way as other Java
applications
javac JFrameExample1.java
java JFrameExample1
Swing programs are compiled and run in the same way as other Java applications
152
Best Practice.. For thread-safety problem.
public void makeGUI(){
public class JFrameExample{
JFrame.setDefaultLookAndFeelDecorated(tr
public static void main(String[] args){
ue);
try{
JFrame frame = new
SwingUtilities.invokeAndWait(new JFrame("FrameDemo");
Runnable(){
frame.setDefaultCloseOperation(
public void run(){ JFrame.EXIT_ON_CLOSE);
JFrameExample jfex=new JLabel jl1=new JLabel("Welcome to Swing
JFrameExample(); Programming");
jfex.makeGUI(); frame.getContentPane().add(jl1);
}}); frame.pack();
} catch(Exception e){ frame.setVisible(true);
} }
} }
Although the previous example works fine, it is not a good practice in writing Swing
applications like that.
As per sun recommendations the best practice is to create GUI from a thread other
than the event-dispatching thread.
153
Swing Components
The Swing Components are categorized as,
Top-Level Containers
Applet, Dialog, Frame
General-Purpose Containers
Panel,Scroll Pane, Split Pane, Tabbed pane, Tool bar.
Special-Purpose Containers
Internal Frames, Layered Pane, Root Pane
Basic Controls
Buttons, Combo box, List, Menu, Slider, Snipper, Text Field
154
Components and Containers
JComponent : It is the base class for all the Swing components except the Top
level Containers.
The JComponent class is an abstract class that extends the AWT Container
class
The visual components are known as the "J" classes and are named with JXxx
convention. For Example: JLabel, JButton, etc.
JComponent : It is the base class for all the Swing components except the Top level
Containers.
The JComponent class is an abstract class that extends the AWT Container class
The visual components are known as the "J" classes and are named with JXxx
convention. For Example: JLabel, JButton, etc.
155
JComponent Hierarchy
156
Events
Events correspond to :
application
157
Event Handling Mechanisms
Delegation event model The new approach
Concept :
Source generates the events and sends them to one or more listeners
Once received, the listener processes the event and then returns
code
158
Using the delegation event model
public class MyApplication{
MyApplication{
Create a Listener
... object which
Button button = new Button("I'm a button!");
implements the
button.addActionListener(new MyHandler());
MyHandler());
} listener interface.
Associate a Listener
public class MyHandler implements ActionListener{
ActionListener{
public void actionPerformed(ActionEvent e){
with the source
numClicks++;
numClicks++;
}
}
A sample code which shows the implementation of the delegated event model
Steps involved are,
1. Create a Listener object which implements the listener interface.
1. Associate a Listener with the source
Here ActionListener is the listener registered with button, which listens to the
ActionEvent and performs the action specified in actionPerformed method when it
is notified.
159
Commonly used Swing Component Classes
JLabel
JApplet
JTextField
JPasswordField
JButton
JCheckBox
JRadioButton
JComboBox
JTextArea
JScrollPane
JPopupMenu
JTabbedPane
JTree
Copyright 2005, Infosys 160 ER/CORP/CRS/LA10/003
Technologies Ltd Version 1.00
160
JLabel
Swing Labels are instances of the JLabel class.
The JLabel class does not respond to input events and cannot obtain the input focus.
JLabel(String text)
161
JApplet
162
JApplet [Example] To execute the program. [Same as Java
import java.awt.*; Applets]
import javax.swing.*;
Store the program under
/*<applet code="JLabelDemo" height=500 width=500>
JLabelDemo.java file name
</applet>*/
public class JLabelDemo extends JApplet{ Then execute javac JLabelDemo.java
public void init(){
try{ Then exectute
SwingUtilities.invokeAndWait(new Runnable(){ appletviewer JLabelDemo.java
public void run(){
makeGUI(); Output
}
});
}catch(Exception e){
}
}
public void makeGUI(){
JLabel jl=new JLabel("Hello World",JLabel.CENTER);
add(jl);
}
}
Here is an example to work with JApplet. The execution steps are same as Java
Applets.
163
JTextField and JPasswordField
JTextField
This displays a Textbox that can hold a Single line editable Text.
JPasswordField
This displays a Textbox that can hold a Single line editable Text in encrypted form.
jpf.setEchoChar('.'); This specifies the character to echo in the Password field when the user
enters a character
JTextField
This displays a Textbox that can hold a Single line editable Text.
This extends JTextComponent which extends JComponent.
JTextField jtf=new JTextField(15); creates a TextField of column size 15.
JPasswordField
This displays a Textbox that can hold a Single line editable Text in encrypted
form.
This extends JTextField.
JPasswordField jpf=new JPasswordField(10); creates a password Field of
column size 10.
jpf.setEchoChar('.'); This specifies the character to echo in the Password field
when the user enters a character
In both JTextField and JPasswordField an ActionEvent will be notified to the registered
Listeners when the use presses Enter Key.
164
JTextField and JPasswordField [Contd]
public class JTextFieldDemo extends JApplet public void makeGUI(){
implements ActionListener{
ActionListener setLayout(new FlowLayout());
JTextField jtf=null;
jtf=null; jl1=new JLabel("Enter the user name");
JPasswordField jpf=null;
jpf=null; jl2=new JLabel("Enter the Password");
165
JButton
166
JButton (Contd)
JButton jb1,jb2;
setLayout(new FlowLayout());
FlowLayout());
jb1=new JButton("Servlets");
JButton("Servlets");
jb2=new JButton("JSP");
JButton("JSP");
jb1.setActionCommand("SERVLETS");
jb2.setActionCommand("JSP");
jb1.addActionListener(this);
jb2.addActionListener(this);
add(jb1);
add(jb2);
showStatus(e.getActionCommand());
167
JCheckBox
The JCheckBox class extends the JToggleButton class which is for Two state
buttons.
168
JCheckBox (Contd)
JCheckBox jc1,jc2; public void itemStateChanged(ItemEvent e){
...
JCheckBox jc=(JCheckBox)e.getItem();
jc1=new JCheckBox("Servlets",true);
JCheckBox("Servlets",true);
jc2=new JCheckBox("JSP");
JCheckBox("JSP"); if(e.getStateChange()==ItemEvent.SELECTED){
jc1.addItemListener(this); showStatus(jc.getText()+" - Selected");
jc2.addItemListener(this);
}
add(jc1);
add(jc2); else{
... showStatus(jc.getText()+" - Cleared");
169
JRadioButton
The JRadioButton class extends the JToggleButton class.
The Difference between Radio button and checkbox is that only one button from a group
will be selected.
The ButtonGroup ensures that only one button is selected at any given time.
JRadioButton jr1=new JRadioButton("Servlets",true);
bg.add(jr1);
bg.add(jr2);
Creates a Button group and adds both the radio buttons in to the group so that only of the both will be
selected at a time.
When the Radio Button is selected or deselected, action event will be generated.
170
JRadioButton(Contd)
JRadioButton jr1,jr2;
jr1=new JRadioButton("Servlets",true);
JRadioButton("Servlets",true); showStatus(e.getActionCommand());
jr2=new JRadioButton("JSP");
JRadioButton("JSP"); }
jr1.addActionListener(this);
jr2.addActionListener(this);
add(jr1);
add(jr2);
ButtonGroup bg=new
bg=new ButtonGroup();
ButtonGroup();
bg.add(jr1);
bg.add(jr2);
171
JComboBox
ComboBox is a combination of text field and a drop down list which allows the
user to select an entry from the list.
E.g:
jc1.addItem("Servlets");
jc1.addItem("JSP");
172
JComboBox [Contd]
JComboBox jc1;
jc1=new JComboBox();
JComboBox();
jc1.addItem("Servlets");
jc1.addItem("JSP");
jc1.addItemListener(this);
add(jc1);
public void itemStateChanged(ItemEvent e){
showStatus((String)e.getItem());
}
173
JTextArea and JScrollPane
JTextArea
It is for handling multi-line text.
JTextArea doesn't manage scrolling, but implements the swing Scrollable interface.
This allows it to be placed inside a JScrollPane if scrolling behavior is need, and
used directly otherwise.
JScrollPane
This extends JComponent.
174
JTextArea and JScrollPane [Contd]
JTextArea textArea = new JTextArea("Fill your details here",7,25);
textArea.setFont(new Font("Serif", Font.ITALIC, 16));
textArea.setLineWrap(true);
textArea.setWrapStyleWord(true);
int v=ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS;
int h=ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS;
JScrollPane js=new
js=new JScrollPane(textArea,v,h);
JScrollPane(textArea,v,h);
add(js);
add(js);
175
Working with Menus
Menus- these are the components that are not part of any other components.
Menus- these are the components that are not part of any other components.
They can be the part of MenuBar or can appear as popup munu.
Here is the hieraarchy of menu related classes
176
JMenuBar,JMenu,JMenuItem
JMenuBar
JMenuBar menuBar=new JMenuBar(); creates a MenuBar named menuBar.
setJMenuBar(JMenuBar menuBar) method in JFrame and Japplet class sets the menuBar to the
respective TopLevel container.
JMenu
JMenu file=new JMenu("File"); creates a menue with the name file and Text File associates
with it.
add(Componet c) adds a Component ex: JMenu [which forms the sub menu] to the end of this
menu.
Menus can be added to the MenuBar with the help of add method in JMenuBar
JMenuItem
JMenuItem menuItem=new JMenuItem("New); creates a Menu Item.
It is similar to a button . When selected action associated with the menu item will get executed.
JMenuBar
JMenuBar menuBar=new JMenuBar(); creates a MenuBar named menuBar.
setJMenuBar(JMenuBar menuBar) method in JFrame and Japplet class sets
the menuBar to the respective TopLevel container.
JMenu
JMenu file=new JMenu("File"); creates a menue with the name file and Text
File associates with it.
add(JMenuItem menuItem) adds a Menu Item to the end of the Menu.
add(Componet c) adds a Component ex: JMenu [which forms the sub menu] to
the end of this menu.
Menus can be added to the MenuBar with the help of add method in JMenuBar
JMenuItem
JMenuItem menuItem=new JMenuItem("New); creates a Menu Item.
It is similar to a button . When selected action associated with the menu item
will get executed.
177
JMenuBar,JMenu,JMenuItem [Contd]
Menus can be accessed through keyboard using mnemonics and accelerators.
setAccelerator(KeyStroke keyStroke) Sets the key combination which invokes the menu
item's action listeners without navigating the menu hierarchy.
E.g:
menuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_1,ActionEvent.ALT_MASK));
This makes the menuItem activated when Alt and 1 keys are pressed.
178
JMenuBar,JMenu,JMenuItem [Contd]
menuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEve
JMenuBar menuBar;
menuBar;
nt.VK_1,ActionEvent.ALT_MASK));
JMenu file,view,toolBar;
file,view,toolBar;
menuItem.addActionListener(this);
JMenuItem menuItem;
menuItem; toolBar.add(menuItem);
toolBar.add(menuItem);
menuItem=new
menuItem=new JMenuItem("Formating",KeyEvent.VK_F);
JMenuItem("Formating",KeyEvent.VK_F);
menuBar=new
menuBar=new JMenuBar();
JMenuBar(); menuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEve
menuItem.addActionListener(this); menuItem.addActionListener(this);
file.add(menuItem);
file.add(menuItem); toolBar.add(menuItem);
toolBar.add(menuItem);
menuItem=new
menuItem=new JMenuItem("Picture",KeyEvent.VK_P);
JMenuItem("Picture",KeyEvent.VK_P);
menuItem=new
menuItem=new JMenuItem("Close",KeyEvent.VK_C);
JMenuItem("Close",KeyEvent.VK_C);
menuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEve
menuItem.addActionListener(this);
nt.VK_4,ActionEvent.ALT_MASK));
file.add(menuItem);
file.add(menuItem);
menuItem.addActionListener(this);
menuBar.add(file);
menuBar.add(file); toolBar.add(menuItem);
toolBar.add(menuItem);
view=new JMenu("View");
JMenu("View"); view.add(toolBar);
view.add(toolBar);
view.setMnemonic(KeyEvent.VK_V); menuBar.add(view);
menuBar.add(view);
toolBar=new
toolBar=new JMenu("ToolBar");
JMenu("ToolBar"); setJMenuBar(menuBar);
setJMenuBar(menuBar);
toolBar.setMnemonic(KeyEvent.VK_T);
public void actionPerformed(ActionEvent e){
menuItem=new
menuItem=new JMenuItem("Standard",KeyEvent.VK_S);
JMenuItem("Standard",KeyEvent.VK_S);
showStatus(e.getActionCommand());
}
179
JMenuBar,JMenu,JMenuItem [Contd]
When you run the above code you will get the menu displays as shown here.
180
JPopupMenu
JPopupMenu is created to provide a menu anywhere desired.
These menus are invisible until the user makes a platform-specific mouse
action such as pressing the right mouse button over a pop-up enabled
component.
Popup menus are created in the same way as menu bar the difference is
instead of JMenuBar, JPopupMenu is used.
This can have JMenus, which in turn can have JMenus and JMenuItems.
181
JPopupMenu [Contd..]
JPopupMenu menuBar=new
menuBar=new JPopupMenu();
JPopupMenu(); public void showPopup(MouseEvent e){
. if(e.isPopupTrigger()){
if(e.isPopupTrigger()){
menuBar.show(e.getComponent(),e.getX(),e.getY());
menuBar.show(e.getComponent(),e.getX(),e.getY());
JTextArea textArea = new JTextArea("Fill your details }
here",7,25); }
textArea.setFont(new Font("Serif", Font.ITALIC, 16));
textArea.setLineWrap(true);
textArea.setWrapStyleWord(true);
int v=ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS;
int h=ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS;
JScrollPane js=new
js=new JScrollPane(textArea,v,h);
JScrollPane(textArea,v,h);
add(js);
add(js);
textArea.addMouseListener(new MouseAdapter(){
MouseAdapter(){
public void mousePressed(MouseEvent e){
showPopup(e);
showPopup(e);
}
public void mouseReleased(MouseEvent e){
showPopup(e);
showPopup(e);
}
});
182
JTabbedPane
183
JTabbedPane [Contd]
JTabbedPane jtp=new
jtp=new JTabbedPane();
JTabbedPane(); public void itemStateChanged(ItemEvent e){
jtp.addTab("DotNetCourses",new DotNet());
DotNet()); if(jc1.isSelected()){
add(jtp);
add(jtp); courses+=jc1.getText();
jc1=new JCheckBox("Servlets"); }
jc1.addItemListener(this); }
jc2.addItemListener(this); jt1.setText(courses);
jc3.addItemListener(this); }
add(jc1); }
add(jc3);
add(jt1); }
184
JTree
185
jt1=new JTree(root);
JTree(root);
JTree [Contd] jt1.addMouseListener(new MouseAdapter(){
MouseAdapter(){
public void mouseClicked(MouseEvent me){
TreePath
JTree jt1;
tp=jt1.getPathForLocation(me.getX(),me.getY());
JScrollPane js1;
if(tp!=null){
...
showStatus(tp.toString());
DefaultMutableTreeNode root=new
}
DefaultMutableTreeNode("Foundation Training");
else{
DefaultMutableTreeNode c1=new DefaultMutableTreeNode("Generic
showStatus("");
Training");
}
DefaultMutableTreeNode c2=new DefaultMutableTreeNode("Stream
Training"); }
c2.add(c2c2); display(tee);
c2.add(c2c3); }
c2.add(c2c5); showStatus(""+tee.getPath());
}
186
Layout Managers
Layout Managers controls the size and position (layout) of components inside a
Container object.
java.awt package provides a set of predefined Layout Managers that implements
java.awt.LayoutManager interface.
Every Swing container has a predefined layout manager as its default
container.setLayout method is used to change the Layout Manager associated with the
particular component.
Predefiened Layout Managers available are,
FlowLayout
BorderLayout
GridLayout
GridBagLayout
CardLayout
Layout Managers controls the size and position (layout) of components inside a
Container object.
java.awt package provides a set of predefined Layout Managers that implements
java.awt.LayoutManager interface.
Every Swing container has a predefined layout manager as its default
container.setLayout method is used to change the Layout Manager associated with the
particular component.
Predefiened Layout Managers available are,
FlowLayout
BorderLayout
GridLayout
GridBagLayout
CardLayout
Refer to JavaDocs to explore more on this.
187
Different Layouts
There are 5 different layouts available
FlowLayout
The components are placed horizontally one after another and then move to the
next line
GridLayout
The components are placed in a grid (rows, columns)
BorderLayout
5 components can be added at the most
188
Different Layouts [Contd]
CardLayout
The CardLayout places components/containers on top of each other like a deck of
cards
GridBagLayout
Most powerful and flexible
Components can be of different sizes and they can span multiple cells in the grid
CardLayout
The CardLayout places components/containers on top of each other like a
deck of cards
Only one is visible at a time
Every card is made visible using the method show()
GridBagLayout
Most powerful and flexible
It is a more advanced form of GridLayout where components can be placed
horizontally and vertically
Components can be of different sizes and they can span multiple cells in the
grid
189
Visual Effects of Layout
for(int i=0;i<9;i++){
JButton jb=new
jb=new JButton(""+(i+1));
add(jb);
add(jb);
Consider the above code. It will create and add 9 buttons to the container say
JApplet.
FlowLayout());
When setLayout(new FlowLayout()); is set the display will be like as
follows
Let us now discuss how the layout managers changes the display. Consider the given
code. It will create and add 9 buttons to the container say JApplet.
When setLayout(new FlowLayout()); is set the display will be like as shown here.
190
Visual Effects of Layout [Grid Layout]
When setLayout(new GridLayout(3,3)); is set then the buttons will be
arranged as.
191
Basic Java Programming
Conclusion
192
Conclusion
Basic programming constructs
Applets
Exception Handling
Swing Programming
This course is a base course which help you learn the Basic concepts of java.
Hope you enjoyed learning.
Thank you.
193