Konvertieren Sie Excel in HTML
Contents
[
Hide
]
Konvertieren Sie Excel in HTML
Aspose.Cells for Python via Java API bietet die Möglichkeit, Excel-Dateien in HTML-Dokumente zu konvertieren. Dafür sorgt die APIHtmlSaveOptions Klasse, mit der Entwickler mehrere Aspekte der Ausgabe HTML steuern können.
Das folgende Code-Snippet demonstriert die Verwendung vonHtmlSaveOptionsKlasse zum Exportieren von Excel-Dateien in das Format HTML.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source_directory = "Examples/SampleFiles/SourceDirectory/" | |
output_directory = "Examples/SampleFiles/OutputDirectory/" | |
save_options = HtmlSaveOptions(SaveFormat.HTML) | |
workbook = Workbook(source_directory + "Book1.xlsx") | |
workbook.save(output_directory + "ConvertingToHTMLFiles_out.html", save_options) |