تصدير كائن LISTOBJECT إلى ملف بتنسيق XPS باستخدام Cells Cloud SDK لـ Ruby
API
POST
https://api.aspose.cloud/v3.0/cells/export
يعد تصدير كائن LISTOBJECT إلى ملف XPS من ملف Excel مهمة معقدة. يتم تنفيذ انتقالات تنسيق تصدير LISTOBJECT إلى XPS بواسطة Ruby SDK الخاص بنا مع الحفاظ على المحتوى الهيكلي والمنطقي الرئيسي لجدول بيانات LISTOBJECT المصدر. تعد مكتبة Ruby الخاصة بنا حلاً احترافيًا لتصدير كائنات LISTOBJECT إلى ملفات بتنسيق XPS عبر الإنترنت. يوفر Cloud SDK لمطوري Ruby وظائف قوية وإخراجًا مثاليًا XPS.
مثال على التعليمات البرمجية في روبي باستخدام REST API لتصدير LISTOBJECT إلى تنسيق XPS من جدول البيانات
# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/
describe 'cells_save_as_post_document_save_as test' do
it "should work" do
@instance = AsposeCellsCloud::LiteCellsApi.new($client_id,$client_secret,"v3.0","https://api.aspose.cloud/")
files = {}
name = $DataSourceXlsx
files[name] = ::File.open(File.expand_path("data/"+name),"r")
name =$AssemblyTestXlsx
files[name] = ::File.open(File.expand_path("data/"+name),"r")
format = 'xps'
objectType = 'listobject'
result = @instance.post_export(files ,objectType ,format)
end
end
كيفية استخدام Cells Cloud SDK لروبي لتصدير الكائنات من Excel LISTOBJECT إلى XPS
- تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
- قم بتهيئة Cells API باستخدام معرف العميل وسر العميل وعنوان URL الأساسي وإصدار API.
- قم باستدعاء طريقة post_export للحصول على الدفق الناتج
متطلبات النظام
- روبي 2.5 أو أحدث