C#でDataTableをExcelに変換する方法

このクイックチュートリアルでは、** C#でDataTableをExcelに変換する方法について説明します。まず、DataTableを作成し、WorkSheet.CellsクラスのImportData関数を使用して、新しく作成したワークブックオブジェクトのワークシートにインポートします。 ** C#でDataTableデータをExcelに書き込んだ後、それをXLSXファイルとしてディスクに保存します。

C#でDataTableをExcelに変換する手順

  1. NuGetパッケージマネージャーを使用して、Aspose.Cells for .NETを追加してDataTableをExcelにインポートします
  2. DataTableをエクスポートするための空のWorkbookのインスタンスを作成します
  3. Excelファイルに書き込むためのDataTableを作成して初期化します
  4. DataTableからデータをインポートするときにパラメーターを設定するためのImportTableOptionsクラスのオブジェクトを宣言します
  5. 新しく作成されたブックの最初のワークシートへの参照を取得します
  6. WorkSheetクラスのCells.ImportData関数を呼び出して、DataTableをインポートします
  7. DataTableからのデータを含む結果のワークブックを保存します

これらの手順では、最初に空のブックが作成され、次にDataTableが初期化されてダミーデータが入力されるように、データをDataTableからExcelにC#でエクスポートするプロセスについて説明します。設定可能な多くのパラメーターを含むImportTableOptionsクラスのオブジェクトが作成されますが、ここではデフォルトのオプションが使用されます。最後に、DataTableは、指定された開始セルでワークブックの最初のワークシートにインポートされます。

C#でDataTableデータをExcelにエクスポートするコード

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がデフォルト設定で使用されますが、データがDataTableからインポートされる0インデックスベースの列番号のリスト、日付形式の設定、合計行と列の設定など、さまざまなパラメーターを設定できます。インポートされた、およびより多く。列タイトルをインポートするかどうかを決定することもできます。

この短いチュートリアルでは、* C#でDataTable*からExcelファイルを作成する方法について説明しました。 ExcelをDataTableに変換するような逆のプロセスを学びたい場合は、C#でExcelをDataTableに変換する方法の記事を参照してください。

 日本語