Null Pointer Exception Java Example Program
Syntax
try{
//Statements
}catch(Expression_type Variable_name){
//Statements
}
Null Pointer Exception Example Program
public class NullPointerException {
static void getLength(String text){
try{
System.out.println("Length of the input string is : "+text.length());
}catch(Exception e){
System.out.println("Exception while trying to find length of input : "+e.toString());
}
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Enter the text to find length : ");
String text = scanner.nextLine();
if(text.length()==0){
//Pass null as input if input is empty
text = null;
}
getLength(text);
}
}
Sample Output 1
Enter the text to find length :
str
Length of the input string is : 3
Sample Output 2
Enter the text to find length :
Exception while trying to find length of input : java.lang.NullPointerException
Exception Handling Programs
- Exception Handling Example Java Program
- Nested Try Example Java Program
- Throw clause Java Example Program
- Throws clause Java Example Program
- Finally Block Java Example Program
- Try-Catch-Finally Java Example Program
- Pass Argument while throwing Exception Java Example Program
- Multiple Catch Blocks Java Example Program
- Re-Throw Exception Java Example Program
- Print stack trace of the Exception Java Example Program
- Handle Exception without Catch block Java Example Program
- Custom Exception Java Example program
- Termination of Program Due To Unhandled Exception Java Example Program
- Divide by Zero Java Example Program
- Null Pointer Exception Java Example Program
- ArrayIndexOutOfBounds Exception Java Example Program
- Number Format Exception Java Example Program
- String Index Out Of Bounds Exception Java Example Program
- ParseException Java Example Program
Read More Articles
- Multiple Inheritance Using Interface Example Java Program
- Single Inheritance Example Java Program
- Multilevel Inheritance Example Java Program
- Hierarchical Inheritance Example Java Program
- Find all Substrings of a given string Example Java Program
- Create Matrix Example Java Program
- Sum Of Three Numbers Example Java Program
- Heap Sort Example Java Program
- Twin Prime Example Java Program
- Compile Time Polymorphism Example Java Program