Ruby で Excel ファイルを HTML に変換する
Contents
[
Hide
]
Aspose.Cells - Excel ファイルを HTML に変換する
Ruby で Aspose.Cells for Java を使用して Excel を HTML に変換するには、Converter モジュールの worksheet_to_html() メソッドを単純に呼び出します。
Ruby Code
def worksheet_to_html(workbook)
save_format = Rjb::import('com.aspose.cells.SaveFormat')
# Specify the HTML saving options
save = Rjb::import('com.aspose.cells.HtmlSaveOptions').new(save_format.M_HTML)
# Save the document
workbook.save(@data_dir + "output.html", save)
puts "HTML saved successfully."
end
ランニングコードのダウンロード
以下に挙げるいずれかのソーシャルコーディングサイトから、Converting Excel Files to HTML (Aspose.Cells) をダウンロードしてください: