我想知道是否有另一种方法可以将多个excel工作表合并为一个而不使用Microsoft.Office.Interop.Excel;
命名空间。
我目前正在使用C#,需要在C#中找到另一种方式。
它的原因,是我无法控制的,但我想知道是否有另一种方法可以在没有它的情况下这样做。
我愿意接受各种想法和任何帮助。
以下是C#到目前为止(完全正常工作)
using Microsoft.Office.Interop.Excel;
namespace MergeWorkBooks
{
internal class Program
{
private static void Main(string[] args)
{
string mergedWorkbookName = "MergedWorkbook.xlsx";
string[] sourceFilePaths = new string[] { "STORE_OPS_00_COVER.xlsx", "STORE_OPS_01_STOCK_ACCOUNT_MOVEMENT_REPORT.xlsx", "STORE_OPS_02_SALES_SUMMARY.xlsx", "STORE_OPS_03_DISPATCHES.xlsx" };
string destinationFilePath = @"C:\Users\bb\Documents\" + mergedWorkbookName;
MergeWorkbooks(destinationFilePath, sourceFilePaths);
}
public static void MergeWorkbooks(string destinationFilePath, params string[] sourceFilePaths)
{
var app = new Application();
app.DisplayAlerts = false; // No prompt when overriding
// Create a new workbook (index=1) and open source workbooks (index=2,3,...)
Workbook destinationWb = app.Workbooks.Add();
foreach (var sourceFilePath in sourceFilePaths)
{
app.Workbooks.Add(sourceFilePath);
}
// Copy all worksheets
Worksheet after = destinationWb.Worksheets[1];
for (int wbIndex = app.Workbooks.Count; wbIndex >= 2; wbIndex--)
{
Workbook wb = app.Workbooks[wbIndex];
for (int wsIndex = wb.Worksheets.Count; wsIndex >= 1; wsIndex--)
{
Worksheet ws = wb.Worksheets[wsIndex];
ws.Copy(After: after);
}
}
// Close source documents before saving destination. Otherwise, save will fail
for (int wbIndex = 2; wbIndex <= app.Workbooks.Count; wbIndex++)
{
Workbook wb = app.Workbooks[wbIndex];
wb.Close();
}
// Delete default worksheet
after.Delete();
// Save new workbook
destinationWb.SaveAs(destinationFilePath);
destinationWb.Close();
app.Quit();
}
}
}
答案 0 :(得分:1)
我不知道确切的代码,但我非常确定EPPlus(http://epplus.codeplex.com/或通过nuget)能够做到你想要的。我从来没有真正用它来加载excel文件,虽然你知道可以,但是你可以从其他工作表中复制工作表。
EPPlus不需要像机器人那样在机器上安装Excel,也没有像C#库那样多的清理。