
Combine Excel files | Merge Excel using C# .NET Cloud SDK
合併分佈在排隊 Excel 檔案中的資料是一項經常面臨的任務。本文討論透過 .NET REST API 合併 Excel 文件的進階功能。 API的架構是RESTful,允許基於雲端的操作,並且無需直接安裝在單一系統上。
用於合併 Excel 檔案的 REST API
使用 Aspose.Cells Cloud SDK for .NET 將 Excel 檔案無縫且有效率地合併為一個。這個強大的 API 簡化了合併過程,使開發人員能夠利用 Aspose.Cells 的強大功能來簡化資料操作。此外,這種方法不僅簡化了轉換過程,而且確保了整個合併過程的準確性和可靠性。為增強的資料管理工作流程提供強大的解決方案。
在進行報表整合、市場調查、活動登記、財務對帳、學術研究等時,都會產生大量的excel文件。透過使用該API,可以快速整合資料以進行查看和分析。
現在,為了使用 SDK,請在 NuGet 套件管理器中搜尋“Aspose.Cells-Cloud”,然後按一下“新增套件”按鈕。這將在您的專案中新增 SDK 引用。下一個重要步驟是從 雲端儀表板 取得您的用戶端憑證。如果您沒有現有帳戶,只需按照快速入門文章中指定的說明建立免費帳戶即可。
在 C# .NET 中合併 Excel 檔案
以下部分說明如何使用 C# .NET 以程式設計方式合併 Excel 檔案。
CellsApi cellsInstance = new CellsApi(clientID, clientSecret);
建立 CellsApi 類別的對象,我們在其中傳遞客戶端憑證作為參數。
cellsInstance.UploadFile(dictionary.Key, dictionary.Value);
讀取輸入的 Excel 檔案並上傳到雲端儲存。
Aspose.Cells.Cloud.SDK.Model.FilesResult filesResult = lightCellsApi.PostMerge(mapFiles, "xls", false);
呼叫API合併Excel工作簿。然後將合併後的Excel上傳到雲端儲存。
// For complete examples and data files, please go to | |
https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/ | |
// Get client credentials from https://dashboard.aspose.cloud/ | |
string clientSecret = "4d84d5f6584160cbd91dba1fe145db14"; | |
string clientID = "bb959721-5780-4be6-be35-ff5c3a6aa4a2"; | |
// create CellsApi instance while passing ClientID and ClientSecret | |
CellsApi cellsInstance = new CellsApi(clientID, clientSecret); | |
// first Excle workbook on drive | |
string first_Excel = "input-1.xls"; | |
// name of second Excel workbook | |
string second_Excel = "inpuit-2.xls"; | |
// create dictionary object to hold input excel workbooks | |
Dictionary<String, Stream> mapFiles = new Dictionary<string, Stream>(); | |
mapFiles.Add(first_Excel, File.OpenRead(first_Excel)); | |
mapFiles.Add(second_Excel, File.OpenRead(second_Excel)); | |
// First we need to read and upload input Excel files to Cloud storage | |
try | |
{ | |
// iterate through the dictionary object to read content of each Excel file | |
foreach (KeyValuePair<String, Stream> dictionary in mapFiles) | |
{ | |
// upload each workbook to cloud storage | |
cellsInstance.UploadFile(dictionary.Key, dictionary.Value); | |
} | |
} | |
catch (Exception ex) | |
{ | |
// any Exception during file upload to Cloud storage | |
Console.Write(ex.StackTrace); | |
} | |
try | |
{ | |
// initialize the Excel merge request. The worksheets of 2nd worksheet are merged to 1st workbook | |
var response = cellsInstance.CellsWorkbookPostWorkbooksMerge(first_Excel, second_Excel, folder: null, storageName: null, mergedStorageName: null); | |
// print success message if concatenation is successful | |
if (response != null && response.Equals("OK")) | |
{ | |
Console.WriteLine("Concatenate Excel operation completed successfully !"); | |
Console.ReadKey(); | |
} | |
} | |
catch (Exception ex) | |
{ | |
Console.WriteLine("error:" + ex.Message + "\n" + ex.StackTrace); | |
} |

Image1:- Merge Excel
上例中使用的輸入 Excel 工作簿可以從下列位置下載:
使用 cURL 指令合併 Excel 檔案
Aspose.Cells Cloud 是用於 Excel 操作的增強 API,與 cURL 無縫集成,為您提供合併 Excel 檔案的多功能解決方案。透過使用 cURL 指令與 Aspose.Cells Cloud API 交互,您可以以簡單且可擴充的方式啟動合併程序。此外,它還帶來了基於雲端的架構的優勢,確保可擴展性並減少對本地資源的依賴。
此方法的第一步是使用以下命令產生 JWT 存取權令牌:
curl -v "https://api.aspose.cloud/connect/token" \
-X POST \
-d "grant_type=client_credentials&client_id=921363a8-b195-426c-85f7-7d458b112383&client_secret=2bf81fca2f3ca1790e405c904b94d233" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json"
現在我們有了 JWT 令牌,我們需要執行以下命令來合併 Excel 檔案。
curl -v "https://api.aspose.cloud/v3.0/cells/{inputFile1}/merge?mergeWith={inputFile2}" \
-X POST \
-H "accept: application/json" \
-H "authorization: Bearer {accessToken}" \
-d {}
## 結論
總之,資料合併的動態環境提供了兩種合併多個 Excel 檔案的強大方法,即使用功能豐富的 Aspose.Cells Cloud SDK for .NET 和 cURL 命令的可編寫腳本的效率。無論您選擇 Aspose.Cells Cloud SDK 提供的全面工具包和精細控制,還是 cURL 命令的簡單性和跨平台相容性。儘管如此,這兩種方法都可以合併 Excel 文件。
有用的鏈接
## 相關文章
請造訪以下連結以了解更多資訊: