Hello,
Does anyone have an example of using the Aspose to convert from PDF to xlsx?
Any help is Most appreciated.
Thank You in advance.
Hello,
Hi,
Aspose.PDF for Java offers conversion of PDF to XLSX file format. In order to convert the document, please use following code snippet:
Document doc = new Document(dataDir + "input.pdf");
ExcelSaveOptions ex = new ExcelSaveOptions();
ex.setFormat(ExcelSaveOptions.ExcelFormat.XLSX);
doc.save(dataDir + "Testxlsx.xlsx", ex);