What is finally block?
1724
23-Apr-2015
Updated on 16-Sep-2020
Anonymous User
23-Apr-2015Java finally block is a block that is used to execute important code such as closing connection, stream etc.
Java finally block is always executed whether exception is handled or not.
Java finally block must be followed by try or catch block.