Convert Revision of XLSB to XLSM

Convert Revision of XLSB to XLSM

The following screenshot shows the .bin files inside the path \xl\revisions of the XLSB file.

todo:image_alt_text

The following screenshot shows how .bin files have been converted into .xml files when the XLSB file is converted to XLSM format using Aspose.Cells.

todo:image_alt_text

Here is the code to convert the XLSB file into XLSM format using Aspose.Cells.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getDataDir(ConvertRevisionOfXLSBtoXLSM.class);
Workbook workbook = new Workbook(dataDir + "book1.xlsb");
workbook.save(dataDir + ".out.xlsm", SaveFormat.XLSM);