كيفية تحويل DataTable إلى Excel في C#

سيرشدك هذا البرنامج التعليمي السريع إلى كيفية ** تحويل DataTable إلى Excel في C# **. أولاً ، سننشئ DataTable ثم نستورده إلى ورقة عمل كائن المصنف الذي تم إنشاؤه حديثًا باستخدام وظيفة ImportData لفئة WorkSheet.Cells. بعد ** كتابة بيانات DataTable إلى Excel في C# ** ، سنحفظها كملف XLSX على القرص.

خطوات تحويل DataTable إلى Excel في C#

  1. باستخدام مدير الحزم NuGet ، أضف Aspose.Cells for .NET لاستيراد DataTable إلى Excel
  2. قم بإنشاء مثيل لـ Workbook فارغ لتصدير DataTable إليه
  3. قم بإنشاء وتهيئة DataTable للكتابة إلى ملف Excel
  4. قم بتعريف كائن من فئة ImportTableOptions لإعداد المعلمات أثناء استيراد البيانات من DataTable
  5. احصل على مرجع لورقة العمل الأولى في المصنف الذي تم إنشاؤه حديثًا
  6. اتصل بوظيفة Cells.ImportData في فئة WorkSheet لاستيراد DataTable
  7. احفظ المصنف الناتج الذي يحتوي على بيانات من DataTable

تصف هذه الخطوات عملية * تصدير البيانات من DataTable إلى Excel في C# * بطريقة خطوة بخطوة بحيث يتم أولاً إنشاء المصنف الفارغ ثم تهيئة DataTable وتعبئتها ببعض البيانات الوهمية. يتم إنشاء كائن من فئة ImportTableOptions يحتوي على الكثير من المعلمات التي يمكن تعيينها ، ولكن هنا يتم استخدام الخيارات الافتراضية. في النهاية ، يتم استيراد DataTable إلى ورقة العمل الأولى من المصنف في خلية بداية محددة.

رمز لتصدير بيانات DataTable إلى Excel في C#

using System;
using System.Data;
using Aspose.Cells;
namespace ConvertDataTableToExcelInCSharp
{
class Program
{
static void Main(string[] args)
{
// Use Aspose.Cells license to remove trial version watermark from the Excel file after exporting DataTable
License licenseForCells = new License();
licenseForCells.SetLicense("Aspose.Cells.lic");
// Create an object of a workbook to export DataTable
Workbook workbookForDataTable = new Workbook();
// Create a sample DataTable for the student
DataTable studentTable = new DataTable("Student");
// Add multiple columns in the newly created DataTable
studentTable.Columns.Add("Roll No", typeof(long));
studentTable.Columns.Add("Age", typeof(short));
studentTable.Columns.Add("Name", typeof(string));
// Create a new row for adding to the data table
DataRow studentRecord = studentTable.NewRow();
// Set the fields data in the row
studentRecord["Roll No"] = 1002;
studentRecord["Age"] = 19;
studentRecord["Name"] = "Alfred Keam";
// Add this newly created record into the student table
studentTable.Rows.Add(studentRecord);
// Create another row for the student table
studentRecord = studentTable.NewRow();
// Set data in the newly created row
studentRecord["Roll No"] = 1003;
studentRecord["Age"] = 20;
studentRecord["Name"] = "Bernadette Thares";
// Add this record to the student table
studentTable.Rows.Add(studentRecord);
// Instantiate an object of ImportTableOptions for controlling the import of DataTable into Excel
ImportTableOptions importOptions = new ImportTableOptions();
// Get reference to the first worksheet in the workbook
Worksheet dataTableWorksheet = workbookForDataTable.Worksheets[0];
// Call the ImportData function to import DataTable starting from cell A1 described by row 0 and column 0
dataTableWorksheet.Cells.ImportData(studentTable, 0, 0, importOptions);
// Set the columns width so that entire data is visible within the cell
dataTableWorksheet.AutoFitColumns();
// Save the output workbook on the disc
workbookForDataTable.Save("DataTableImported.xlsx");
}
}
}

في هذا الرمز ، يتم استخدام ImportTableOptions مع الإعدادات الافتراضية ، ومع ذلك ، يمكنك تعيين مجموعة متنوعة من المعلمات مثل قائمة من 0 أرقام أعمدة تستند إلى فهرس والتي سيتم استيراد بياناتها من DataTable ، وتعيين تنسيق التاريخ ، وتعيين إجمالي الصفوف والأعمدة لتكون المستوردة ، وغيرها الكثير. يمكنك أيضًا تحديد ما إذا كان سيتم استيراد عناوين الأعمدة أم لا.

شرح هذا البرنامج التعليمي القصير كيفية إنشاء ملف Excel من DataTable * C#. إذا كنت تريد معرفة العملية العكسية مثل تحويل Excel إلى DataTable ، فراجع المقالة على كيفية تحويل Excel إلى DataTable في C#.

 عربي