Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active February 17, 2023 02:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/0a303cfc684591a40f715df5a1494c89 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/0a303cfc684591a40f715df5a1494c89 to your computer and use it in GitHub Desktop.
Excel to HTML in Java
// Load Excel file
Workbook workbook = new Workbook("workbook.xlsx");
// Create HTML options and enable presentation preference
HtmlSaveOptions options = new HtmlSaveOptions();
options.setPresentationPreference(true);
// Save as HTML
workbook.save("Excel-to-HTML.html", options);
// Load Excel file
Workbook workbook = new Workbook("workbook.xlsx");
// Create HTML options and enable tooltip
HtmlSaveOptions options = new HtmlSaveOptions();
options.setAddTooltipText(true);
// Save as HTML
workbook.save("Excel-to-HTML.html", options);
// Load Excel file
Workbook workbook = new Workbook("workbook.xlsx");
// Save as HTML
workbook.save("Excel-to-HTML.html");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment