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:
Convert PDF to XLSX using Aspose.PDF for Java
Document doc = new Document(dataDir + "input.pdf");
ExcelSaveOptions ex = new ExcelSaveOptions();
ex.setFormat(ExcelSaveOptions.ExcelFormat.XLSX);
doc.save(dataDir + "Testxlsx.xlsx", ex);