使用 IronXL 在 ASP.NET MVC 中讀取 Excel 文件

This article was translated from English: Does it need improvement?
Translated
View the article in English

本教程指導開發人員如何在ASP.NET MVC應用程式中使用IronXL實現Excel文件解析。

建立一個ASP.NET專案

使用 Visual Studio 2022(或類似的產品版本),創建一個新的ASP.NET專案。 根據特定項目的需求添加額外的NuGet包和源代碼。

安裝 IronXL 程式庫

立即在您的專案中使用IronXL,並享受免費試用。

第一步:
green arrow pointer


在創建新項目後,我們需要安裝 IronXL 庫。 按照以下步驟安裝 IronXL 程式庫。 在 NuGet 套件管理器控制台中打開並寫下以下命令:

Install-Package IronXL.Excel

讀取 Excel 檔案

打開您的 ASP.NET 專案中的預設控制器(即.HomeController)將 Index 方法替換為以下代碼:

public ActionResult Index()
{
    WorkBook workbook = WorkBook.Load(@"C:\Files\Customer Data.xlsx");
    WorkSheet sheet = workbook.WorkSheets.First();

    var dataTable = sheet.ToDataTable();

    return View(dataTable);
}
public ActionResult Index()
{
    WorkBook workbook = WorkBook.Load(@"C:\Files\Customer Data.xlsx");
    WorkSheet sheet = workbook.WorkSheets.First();

    var dataTable = sheet.ToDataTable();

    return View(dataTable);
}
Public Function Index() As ActionResult
	Dim workbook As WorkBook = WorkBook.Load("C:\Files\Customer Data.xlsx")
	Dim sheet As WorkSheet = workbook.WorkSheets.First()

	Dim dataTable = sheet.ToDataTable()

	Return View(dataTable)
End Function
VB   C#

Index動作方法中,我們使用IronXL的Load來加載Excel檔案。 Excel 文件的路徑(包括檔案名稱)作為方法調用的參數提供。 接著,我們選擇第一個Excel工作表作為工作表,並將其中包含的數據加載到Datatable對象中。 最後,Datatable 被發送到前端。

在網頁上顯示 Excel 數據

下一個示例展示了如何在網頁瀏覽器中顯示上一個示例中返回的Datatable。

以下是本節範例中將使用的工作 Excel 文件:

在 ASP.NET MVC 中使用 IronXL 讀取 Excel 文件,圖 1:Excel 文件

Excel 文件

打開 index.cshtml(索引檢視)並將代碼替換為以下HTML代碼。

@{
    ViewData ["Title"] = "Home Page";
}

@using System.Data
@model DataTable

<div class="text-center">
    <h1 class="display-4">Welcome to IronXL Read Excel MVC</h1>
</div>
<table class="table table-dark">
    <tbody>
        @foreach (DataRow row in Model.Rows)
        {
            <tr>
                @for (int i = 0; i < Model.Columns.Count; i++)
                {
                    <td>@row [i]</td>
                }
            </tr>
        }

    </tbody>
</table>
@{
    ViewData ["Title"] = "Home Page";
}

@using System.Data
@model DataTable

<div class="text-center">
    <h1 class="display-4">Welcome to IronXL Read Excel MVC</h1>
</div>
<table class="table table-dark">
    <tbody>
        @foreach (DataRow row in Model.Rows)
        {
            <tr>
                @for (int i = 0; i < Model.Columns.Count; i++)
                {
                    <td>@row [i]</td>
                }
            </tr>
        }

    </tbody>
</table>
@
If True Then
	ViewData ("Title") = "Home Page"
End If

'INSTANT VB WARNING: An assignment within expression was extracted from the following statement:
'ORIGINAL LINE: using System.Data model DataTable <div class="text-center"> <h1 class="display-4"> Welcome to IronXL Read Excel MVC</h1> </div> <table class="table table-dark"> <tbody> foreach(DataRow row in Model.Rows)
"display-4"> Welcome [to] IronXL Read Excel MVC</h1> </div> <table class="table table-dark"> (Of tbody) foreach(DataRow row in Model.Rows)
		If True Then
'INSTANT VB WARNING: An assignment within expression was extracted from the following statement:
'ORIGINAL LINE: using System.Data model DataTable <div class="text-center"> <h1 class="display-4"> Welcome to IronXL Read Excel MVC</h1> </div> <table class
"text-center"> <h1 class="display-4"> Welcome [to] IronXL Read Excel MVC</h1> </div> <table class
[using] System.Data model DataTable <div class="text-center"> <h1 class
'INSTANT VB TODO TASK: Local functions are not converted by Instant VB:
'			(Of tr) @for(int i = 0; i < Model.Columns.Count; i++)
'				{
'					<td> @row [i]</td>
'				}
			</tr>
		End If

'INSTANT VB TODO TASK: The following line uses invalid syntax:
'	</tbody> </table>
VB   C#

上述代碼使用從Index方法返回的Datatable作為模型。 表格中的每一行都使用 @for 循環在網頁上打印,包括用於裝飾的 Bootstrap 格式。

執行該項目將產生以下所示的結果。

在 ASP.NET MVC 中使用 IronXL 讀取 Excel 檔案,圖 2:Bootstrap 表格

引導表格