Safve Excel-2007 into Excel-2010- 2013 format in java with ASPOSE

Hi,


Please provide us the template “version.xlsx” file here, we will check it soon.

Thank you.

Hi Amjad,



I am just creating excel using below code and saving it as version.xlsx using ASPOSE API.



Workbook wb = new Workbook();

wb.save(“D:\ASPOSE\version.xlsx”, SaveFormat.XLSX);

System.out.println(wb.getBuiltInDocumentProperties().getVersion());

System.out.println(“DONE!!!”);



PSA file which is get created after this code execution

Hi,


You got to open/ re-open the Excel workbook to get the version details. You may try to add a line of code to your code:
e.g
Sample code:

Workbook wb = new Workbook();
wb.save(“version1.xlsx”, SaveFormat.XLSX);

wb = new Workbook(“version1.xlsx”);
System.out.println(wb.getBuiltInDocumentProperties().getVersion());
System.out.println(“DONE!!!”);


Thank you.

Hi Amjad,

Thank you so much.

Now I am getting AppVersion tag. Thanks for you assistance.

Hi,


Good to know that your issue is figured out now. Feel free to contact us any time if you need further help or have some other issue or queries, we will be happy to assist you soon.

Thank you.

The issues you have found earlier (filed as CELLSJAVA-41048) have been fixed in this update.


This message was posted using Notification2Forum from Downloads module by Aspose Notifier.