Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active February 16, 2022 06:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/94d43731515ef2098a378472f60777d9 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/94d43731515ef2098a378472f60777d9 to your computer and use it in GitHub Desktop.
Enable or Disable Excel Compatibility Checker in Java
// Load Excel file
Workbook wb = new Workbook("workbook.xls");
// Disable compatibility checker
wb.getSettings().setCheckCompatibility(false);
// Save file
wb.save("output.xls");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment