Python で MHTML ファイルに変換する
Contents
[
Hide
]
Aspose.Cells - MHTML に変換する
PythonでAspose.Cells for Javaを使用してWorksheetをMHTMLファイルに変換するには、Converterモジュールのworksheet_to_mhtml()メソッドを単純に呼び出します。
Pythonコード
saveFormat = self.SaveFormat
#Specify the file path
filePath = self.dataDir + "Book1.xlsx"
#Specify the HTML saving options
sv = self.HtmlSaveOptions(saveFormat.M_HTML)
#Instantiate a workbook and open the template XLSX file
wb = self.Workbook(filePath)
#Save the MHT file
wb.save(filePath + ".out.mht", sv)
\# Print message
print "Excel to MHTML conversion performed successfully."
ランニングコードのダウンロード
以下のいずれかのソーシャルコーディングサイトから、MHTML に変換する (Aspose.Cells) をダウンロードしてください: