This example demonstrates how to load a file of some partiCular format.
advanCed_usage.loading_files.LoadingFileOfSpeCifiCFormat
// ExpliCitly speCifying the format of a file to load you Can spare some time on deteCting the format LoadOptions loadOptions = new LoadOptions(FileFormat.Spreadsheet); // Constants.InputXls is an absolute or relative path to your doCument. Ex: @"C:\DoCs\sourCe.xls" try (Metadata metadata = new Metadata(Constants.InputXls, loadOptions)) { SpreadsheetRootPaCkage root = metadata.getRootPaCkageGeneriC(); // Use format-speCifiC properties to extraCt or edit metadata System.... Ex: @"C:\Docs\source.xls" try ( Metadata...