Conversion of xlsx with filters results in HTML several MB in size.
Here is conversion code. Attached is the original xlsx and html
sample.zip (118.2 KB)
Workbook workbook = new Workbook(sourceFilePath);
HtmlSaveOptions options = new HtmlSaveOptions();
options.setDisableDownlevelRevealedComments(true);
options.setExcludeUnusedStyles(true);
options.setExportComments(false);
options.setHiddenColDisplayType(HtmlHiddenColDisplayType.HIDDEN);
options.setHiddenRowDisplayType(HtmlHiddenRowDisplayType.HIDDEN);
options.setExportBogusRowData(true);
options.setExportFrameScriptsAndProperties(false);
options.setWidthScalable(false);
options.setExportHeadings(true);
workbook.save(“C:\AsposeSheets\”+“test.html”, options);