Pdf to html conversion from remote systems

Hi,

I want to convert a pdf file to html file in other systems.Suppose I have a pdf file in System A and the code for conversion in System B. Then how to convert the pdf in System A.

Thanks,

Vasavi

Hi Vasavi,

Aspose.Pdf for Java supports the feature to convert PDF files to HTML format. You can either provide PDF file by using Stream object or by providing complete file path. The PDF document can be loaded from a network path before attempting the conversion. Take a look at the following code snippet.

[Java]

// load source PDF file
com.aspose.pdf.Document doc = new com.aspose.pdf.Document("c:/pdftest/SourceFile_Converted.pdf");

// save output in HTML format
doc.save("c:/pdftest/SourceFile_Converted.html",
com.aspose.pdf.SaveFormat.Html);

Note: You can also take advantage of the ConversionApp provided by GroupDocs, which operates on Cloud services and therefore can be utilized across various platforms. For further details, please visit ConversionApp).