我也在 CodePlex 讨论板上发布了这个问题(https://epplus.codeplex.com/discussions/468568)
下面是我在那里的复制和粘贴:
我正在尝试使用它在 SSIS 中读取/写入 excel 文档。64 位模式下的 SSIS 不支持 excel 连接。发生的事情是在写入同一个 excel 文件的不同任务中,第二次 Save() 总是失败。我也能够在 .NET 中重现这一点。下面模拟了我在 SSIS 中的一个场景。
RowIndex = 2;
using (var ep = new ExcelPackage(new FileInfo(filePath)))
{
for (var i= 1; i<= 10; i++)
{
var worksheet = ep.Workbook.Worksheets["Sheet1"];
worksheet.Cells[RowIndex, 1].Value = i;
RowIndex++;
}
ep.Save();
}
RowIndex = 2;
using (var ep = new ExcelPackage(new FileInfo(filePath)))
{
for (var ii= 1; ii<= 10; ii++)
{
var worksheet = ep.Workbook.Worksheets["Sheet2"];
worksheet.Cells[RowIndex, 1].Value = ii;
RowIndex++;
}
ep.Save();
}
第二次保存返回以下错误:
{"Error saving file C:\\####.xlsm"}
Inner Exception:
{"Index was outside the bounds of the array."}
at OfficeOpenXml.Utils.CompoundDocument.GetChunk(Byte[] compBuffer, Int32& pos)
at OfficeOpenXml.Utils.CompoundDocument.DecompressPart(Byte[] part, Int32 startPos)
at OfficeOpenXml.VBA.ExcelVbaProject.ReadModules()
at OfficeOpenXml.VBA.ExcelVbaProject.GetProject()
at OfficeOpenXml.VBA.ExcelVbaProject..ctor(ExcelWorkbook wb)
at OfficeOpenXml.ExcelWorkbook.get_VbaProject()
at OfficeOpenXml.ExcelWorkbook.Save()
at OfficeOpenXml.ExcelPackage.Save()
我尝试加载源代码以通过它进行调试,但是 Cells 集合不再存在。我不确定那是怎么发生的。任何帮助,将不胜感激。