Hi,
I use the following method to convert my document to html and get the converted stream result, "convertedDocumentStream " is the result ,But I can`t get the result stream,Can you tell me how to get or is this stream in which attribute of "convertedDocumentStream ",I use groupdocs-conversion-19.10.jar
/*
* Convert document to html and get result as stream
*/
public static void convertToHtmlAsStream(String fileName) {
//ExStart:convertToHtmlAsStream
// Instantiating the conversion handler
ConversionHandler conversionHandler = new ConversionHandler(Utilities.getConfiguration());
ConvertedDocument convertedDocumentStream = conversionHandler. convert(fileName,new HtmlSaveOptions());
//ExEnd:convertToHtmlAsStream
}
Any suggestions would be greatly appreciated !!!