我正在使用Excel = Microsoft.Office.Interop.Excel
将各种数据写入Excel工作表。
Excel.Workbook wb = null;
Excel.Worksheet ws = null;
Excel.Application excelApp = new Excel.Application();
excelApp.Visible = true;
try {
// Create new workbook
wb = (Excel.Workbook)(excelApp.Workbooks.Add(Type.Missing));
ws = wb.ActiveSheet as Excel.Worksheet;
// write data ...
// Save & Close
excelApp.DisplayAlerts = false; // Don't show file dialog for overwrite
wb.Close(true, targetFilename, Type.Missing);
} finally {
// Close the Excel process
if (null != ws)
Marshal.ReleaseComObject(ws);
if (null != wb)
Marshal.ReleaseComObject(wb);
excelApp.Quit();
Marshal.ReleaseComObject(excelApp);
GC.Collect();
}
这个代码一次由多个线程驱动,并且几乎总是在工作。甚至Excel进程也会在任务管理器中消失。
但是,有时会在System.Runtime.InteropServices.COMException
处抛出wb.Close(true, targetFilename, Type.Missing)
。它声称对目标文件名的访问被拒绝。虽然我一直在确保目标文件名是唯一的。
可能是异常是由于Excel处理不当或者我使用的是线程吗?
答案 0 :(得分:0)
显然,targetFilename并不是唯一的。大写/小写拼写有一个单一的区别,似乎两个线程试图一次写入同一个文件。使用targetFilename.ToLower()
可以轻松解决该问题。
无论如何,如果您发现任何其他潜在问题,请发表评论。