تحويل XLT إلى XLSX باستخدام Cells Cloud SDK لـ C#
API
PUT
https://api.aspose.cloud/v3.0/cells/convert
يمكن أن يكون تحويل تنسيقات الملفات من XLT إلى XLSX مهمة معقدة. يتعامل SDK C# الخاص بنا مع جميع تحويلات تنسيق XLT إلى XLSX مع الحفاظ على المحتوى الهيكلي والمنطقي الرئيسي لجدول بيانات XLT المصدر. توفر مكتبتنا C# حلاً احترافيًا لتحويل ملفات XLT إلى XLSX عبر الإنترنت. يعمل Cloud SDK على تمكين مطوري C# من الحصول على وظائف قوية ويضمن إخراج XLSX عالي الجودة.
C# مثال على الكود لتحويل XLT إلى XLSX باستخدام 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.xlt";
string format = "xlsx";
string password = null;
string outPath = null;
string storageName = null;
string destFile = "Book1.xlsx";
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);
}
}
كيفية تحويل XLT إلى XLSX باستخدام مكتبة Cells Cloud Net.
- تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
- قم بتثبيت مكتبة C# وأضف المرجع (استيراد المكتبة) إلى مشروعك.
- افتح الملف المصدر في C#
- استخدم طريقة `PutConvertWorkbook` لاسترداد الدفق الناتج.
متطلبات النظام
- NET Framework 4.5.2 أو الأحدث
- نت ستاندرد 2.0 أو أحدث