Finally block are the block, that executed when the try block exits.
Example to show Finally exception in java
Finally block are the block, that executed when the try block exits. This block executed even after the unexpected exception occured.The Run time always execute the expression in finally block irrespective of the try block. This block is known for recovering and preventing from resources leak.On closing of the file and recovering of a file, you need to place the expression in the finally block.
Understand with Example.
In this Tutorial we want to describe you a code that helps you to handle finally exceptions. The Finally block succeed when the try block exists and will executed when an unexpected exception occurs in the code.. The program given below describes how to use the finally block. In this program if the file "girish.txt" does not occurs it will throw File not Found exception. and also executes the finally block of the program.
1)File Input Stream - This is used to decode the byte and further convert it into a character. stream
Inside the main method the input stream include a fileinputstream object that store and convert convert the byte code to a character stream from a file name "girish.txt".In case there is no such file on the name of "girish.txt".The catch block caught the unexpected exception .Later on finally block print the exception.
FinallyException.java
|
Output of the program
FileNotFoundException occured FinallyException ended |