احفظ XLTX كملف CSV

مكتبة روبي لحفظ XLTX كملف CSV

استخدم SaveAs API من Cells Cloud لإنشاء سير عمل جدول بيانات مخصص في Ruby. يعد هذا حلاً احترافيًا لحفظ XLTX كملف CSV وتنسيقات المستندات الأخرى عبر الإنترنت باستخدام Ruby.

احفظ ملف XLTX بتنسيق CSV في Ruby

API
POST
https://api.aspose.cloud/v3.0/cells/{name}/SaveAs

يعد حفظ تنسيقات الملفات من XLTX كملف CSV مهمة معقدة. يتم تنفيذ جميع عمليات النقل من تنسيق XLTX إلى CSV بواسطة Ruby SDK الخاص بنا مع الحفاظ على المحتوى الهيكلي والمنطقي الرئيسي لجدول بيانات XLTX المصدر. تعد مكتبة Ruby الخاصة بنا حلاً احترافيًا لحفظ XLTX كملفات CSV عبر الإنترنت. يوفر Cloud SDK لمطوري Ruby وظائف قوية ومخرجات CSV مثالية.

مثال على كود روبي لحفظ XLTX كملف CSV باستخدام REST API

# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/
    require 'openssl'
    require 'bundler'
    require 'aspose_cells_cloud'
    @instance = AsposeCellsCloud::CellsApi.new(ENV['ProductClientId'],ENV['ProductClientSecret'])
    name = 'Book1.xltx'
    save_options = nil
    newfilename = 'Book1Saveas.csv'
    is_auto_fit_rows = true
    is_auto_fit_columns = true
    folder = 'Temp'
    result = @instance.cells_save_as_post_document_save_as(name, { :save_options=>save_options, :newfilename=>(folder+"/"+newfilename), :is_auto_fit_rows=>is_auto_fit_rows, :is_auto_fit_columns=>is_auto_fit_columns, :folder=>folder})


كيفية استخدام Cells Cloud SDK لـ Ruby لحفظ ملفات Excel بتنسيقات أخرى XLTX مثل CSV

  1. تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
  2. قم بتهيئة Cells API باستخدام معرف العميل وسر العميل وعنوان URL الأساسي وإصدار API.
  3. استخدم طريقة `post_workbook_save_as` لاسترداد الدفق الناتج.


متطلبات النظام

  1. روبي 2.5 أو أحدث