Finally block in Java

Posted in /  

Finally block in Java
ramyashankar

Ramya Shankar
Last updated on April 25, 2024

    Java allows the use of the finally block that allows you to execute the critical code. This block will always get executed whether the exception is handled or not. the finally block will always come after the try-and-catch block. Generally, the finally block is used for the code like cleanup like closing file, connection etc.

    Example

    import java.util.regex.*;  
    public class Simple{  
    public static void main(String args[]){  
    try{  
       int val=25/4;  
       System.out.println(val);  
      }  
      catch(NullPointerException e){System.out.println(e);}  
      finally{System.out.println("finally block");}  
      System.out.println("rest code");  
      }  
    }

    Output

    Finally block in Java examples

    People are also reading:

    Leave a Comment on this Post

    0 Comments