تحويل XLS إلى XLSB باستخدام Cells Cloud SDK لـ C#
API
PUT
https://api.aspose.cloud/v3.0/cells/convert
يمكن أن يكون تحويل تنسيقات الملفات من XLS إلى XLSB مهمة معقدة. يتعامل SDK C# الخاص بنا مع جميع تحويلات تنسيق XLS إلى XLSB مع الحفاظ على المحتوى الهيكلي والمنطقي الرئيسي لجدول بيانات XLS المصدر. توفر مكتبتنا C# حلاً احترافيًا لتحويل ملفات XLS إلى ملفات XLSB عبر الإنترنت. يعمل Cloud SDK على تمكين مطوري C# من الحصول على وظائف قوية ويضمن إخراج XLSB عالي الجودة.
C# مثال على الكود لتحويل XLS إلى XLSB باستخدام Cells Cloud SDK
// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/
string name = "Book1.xls";
string format = "xlsb";
string password = null;
string outPath = null;
string storageName = null;
string destFile = "Book1.xlsb";
CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("ProductClientId"), Environment.GetEnvironmentVariable("ProductClientSecret"));
using (Stream stream = cellsApi.CellsWorkbookPutConvertWorkbook(File.OpenRead(name), format, password, outPath, storageName))
{
using (Stream outStream = File.OpenWrite(destFile))
{
stream.CopyTo(outStream);
}
}
كيفية تحويل XLS إلى XLSB باستخدام مكتبة Cells Cloud Net.
- تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
- قم بتثبيت مكتبة C# وأضف المرجع (استيراد المكتبة) إلى مشروعك.
- افتح الملف المصدر في C#
- استخدم طريقة `PutConvertWorkbook` لاسترداد الدفق الناتج.
متطلبات النظام
- NET Framework 4.5.2 أو الأحدث
- نت ستاندرد 2.0 أو أحدث