Hi,
I just downloaded the Aspose.Total package with a temporary license. I am trying to convert a PDF to Excel. I tried doing it directly but it did not work and after going through the forum I found out I may have to convert it to an xml file first. I tried that too but the file does not get converted. I am using the below code:
com.aspose.pdf.Document oPDFDoc = new Document(txtInputText.getText());
//System.out.println(oPDFDoc.getFileName());
com.aspose.pdf.ExcelSaveOptions excelsave = new ExcelSaveOptions();
oPDFDoc.save("C:\\Users\\Sam_paul\\Documents\\Sam.xml", excelsave);
Is there something I am doing wrong ?
Thank you,
Sam