تصدير كائن LISTOBJECT إلى ملف بتنسيق JSON باستخدام Cells Cloud SDK لـ Perl
API
POST
https://api.aspose.cloud/v3.0/cells/export
يعد تصدير كائن LISTOBJECT إلى ملف JSON من ملف Excel مهمة معقدة. يتم تنفيذ عمليات تصدير LISTOBJECT إلى تنسيق JSON بواسطة Perl SDK الخاص بنا مع الحفاظ على المحتوى الهيكلي والمنطقي الرئيسي لجدول بيانات LISTOBJECT المصدر. تعد مكتبتنا Perl حلاً احترافيًا لتصدير كائنات LISTOBJECT إلى ملفات بتنسيق JSON عبر الإنترنت. يوفر Cloud SDK هذا لمطوري Perl وظائف قوية ومخرجات JSON مثالية.
مثال على الكود في Perl باستخدام REST API لتصدير LISTOBJECT إلى تنسيق JSON من جدول البيانات
# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl/
use strict;
use warnings;
use utf8;
use File::Slurp;
use MIME::Base64;
use AsposeCellsCloud::LightCellsApi;
my $config = AsposeCellsCloud::Configuration->new( client_id => $ENV{'ProductClientId'}, client_secret => $ENV{'ProductClientSecret'});
my $instance = AsposeCellsCloud::LightCellsApi->new(AsposeCellsCloud::ApiClient->new( $config));
my $filemap = { 'Book1.xlsx' => '~/TestData/Book1.xlsx', 'myDocument.xlsx' => ~/TestData/myDocument.xlsx'};
my $result = $instance->post_export(file => $filemap , object_type => 'listobject',format => 'json');
my $decoded = decode_base64($result->{'files'}[0]->{'file_content'});
open(my $fh, '>',$result->{'files'}[0]->{'filename'}) or die "Could not open file!";
binmode $fh;
print $fh $decoded;
close $fh;
كيفية استخدام Cells Cloud SDK لـ Perl لتصدير الكائنات من Excel LISTOBJECT إلى JSON
- تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
- قم بتهيئة Cells API باستخدام معرف العميل وسر العميل وعنوان URL الأساسي وإصدار API.
- قم باستدعاء طريقة post_export للحصول على الدفق الناتج
متطلبات النظام
- Perl 5