Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
The Aspose.Cells APIs provides support for exporting spreadsheets to HTML format. For this purpose, Aspose.Cells uses the HtmlSaveOptions class which allows developers to control several aspects of the output HTML.
Java
//Specify the HTML Saving Options
HtmlSaveOptions save = new HtmlSaveOptions(SaveFormat.HTML);
//Instantiate a workbook and open the template XLSX file
Workbook book = new Workbook(dataDir + "book1.xls");
//Save the HTML file
book.save(dataDir + "AsposeHTMLSpreadsheet.html", save);
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.