تحويل ملفات HTML إلى جداول بيانات إكسل في روبي
Contents
[
Hide
]
Aspose.Cells - تحويل ملفات HTML إلى جداول بيانات إكسل
لتحويل HTML إلى جدول بيانات باستخدام Aspose.Cells for Java في روبي، قم ببساطة بالاستدعاء الطريقة html_to_excel() من وحدة المحول.
كود Ruby
def html_to_excel()
load_format = Rjb::import('com.aspose.cells.LoadFormat')
# Create an instance of HTMLLoadOptions and initiate it with appropriate LoadFormat
options = Rjb::import('com.aspose.cells.HTMLLoadOptions').new(load_format.HTML)
# Load the Html file through file path while passing the instance of HTMLLoadOptions class
workbook = Rjb::import('com.aspose.cells.Workbook').new(@data_dir + "index.html", options)
save_format = Rjb::import('com.aspose.cells.SaveFormat')
#Save the results to disc in Xlsx format
workbook.save(@data_dir + "output.xlsx", save_format.XLSX)
puts "XLSX saved successfully."
end
تحميل رمز التشغيل
تنزيل تحويل ملفات HTML إلى جداول بيانات إكسل (Aspose.Cells) من أي من مواقع البرمجة الاجتماعية المذكورة أدناه: