Check Version Number of the Component

Checking the version number

1) Manual Way

If you have Java version/fix (Aspose.Cells for Java), you can unzip the Aspose.Cells library jar file, open the MANIFEST file with notepad and search the string i.e.., “Specification-Version: " to check its value.

todo:image_alt_text

Figure: Checking the version number of the Java fix

2) Using the APIs

You may also use the following APIs to get the version number of the product.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
try {
// Instantiating a Workbook object
Workbook workbook = new Workbook();
System.out.println(CellsHelper.getVersion());
}
catch (Exception ee) {
System.out.println(ee);
}