I just started using the Groupdocs.Conversion api. I am trying to convert a pdf to spreadsheet using the code below:
ConversionHandler ConversionHandler = new ConversionHandler(Configuration());
CellsSaveOptions saveOptions = new CellsSaveOptions();
saveOptions.setOutputType(OutputType.String);
String Converted_Document_Path = ConversionHandler.convert"./Data/input/Statement_Sam_red.pdf", saveOptions);
System.out.println("Converted filepath: "+ Converted_Document_Path);
CellsSaveOptions saveOptions = new CellsSaveOptions();
saveOptions.setOutputType(OutputType.String);
String Converted_Document_Path = ConversionHandler.convert"./Data/input/Statement_Sam_red.pdf", saveOptions);
System.out.println("Converted filepath: "+ Converted_Document_Path);
When I run the application it gives me the error "File not found" but I am able to access the file using JavaIO methods. Am I doing something wrong here ?