How to set AutoRecover property of Workbook

Java code to set AutoRecover property of Workbook

The following code explains how to use Workbook.getSettings().setAutoRecover() property of the workbook. The code first reads the default value of this property which is true, then it sets it as false and saves the workbook. Then it reads the workbook again and reads the value of this property which is false at this time.

Output generated by sample code

Here is the console output of the above sample code.

AutoRecover: true

AutoRecover: false