Konvertieren Sie Excel in HTML mit Überschriften

Konvertieren Sie Excel in HTML mit Überschriften

Aspose.Cells bietet die Möglichkeit, Überschriften beim Konvertieren von Excel in HTML zu exportierenHtmlSaveOptions.ExportHeadings Eigentum zuwahr. Der Standardwert vonHtmlSaveOptions.ExportHeadingsEigentum istFALSCH. Das folgende Bild zeigt die vom folgenden Code generierte Ausgabedatei.

todo: Bild_alt_Text

Beispielcode

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// Load the Excel file.
Workbook workbook = new Workbook(sourceDir + "Book1.xlsx");
// Initialize HtmlSaveOptions
HtmlSaveOptions options = new HtmlSaveOptions();
options.setExportHeadings(true);
//Save to HTML format
workbook.save(outputDir + "PrintHeadings_out.html", options);