关闭Excel工作簿 - System.Runtime.InteropServices.COMException:来自HRESULT的异常:0x800A03EC

问题描述 投票:1回答:1

我已经放入以下方法从XLS文件单元格返回一个值:

public static string ReadFromExcel(string filePath, int sheetNum, int xCell, int yCell)
    { 
            List<string> rowValue = new List<string> {};
            var ExcelFilePath = @filePath;

            Excel.Application xlApp = new Excel.Application();
            Excel.Workbook xlWorkbook = xlApp.Workbooks.Open(ExcelFilePath);
            Excel._Worksheet xlWorksheet = xlWorkbook.Sheets[sheetNum];
            Excel.Range xlRange = xlWorksheet.UsedRange;

            int rowCount = xlRange.Rows.Count;
            int colCount = xlRange.Columns.Count;

            xlApp.ThisWorkbook.Close(); //<-- here it throws the exception in the title
            xlApp.Quit();

            return xlRange.Cells[xCell, yCell].Value2.ToString();
    }

当前代码显然会生成异常,因为我关闭了工作簿和应用程序,然后返回值。添加的方式是什么?

            xlApp.ThisWorkbook.Close();
            xlApp.Quit();

并仍然返回值?

谢谢。

c# excel excel-interop rcw
1个回答
1
投票

使用变量“returnValue”,例如:

var returnValue = xlRange.Cells[xCell, yCell].Value2.ToString();
xlApp.ThisWorkbook.Close();
xlApp.Quit();    
return returnValue;

更新

错误代码表明其中一个是原因:

# as an HRESULT: Severity: FAILURE (1), Facility: 0xa, Code 0x3ec
# for hex 0x3ec / decimal 1004 :
  INVALID_RESOURCETYPE_LOOKSALIVE                               clusvmsg.h     
  JET_wrnColumnNull                                             esent98.h      
# /* Column is NULL-valued */
  NMERR_BLOB_ENTRY_DOES_NOT_EXIST                               netmon.h       
  SQL_1004_severity_16                                          sql_err        
# Invalid column prefix '%.*ls': No table name specified
  SCEEVENT_ERROR_POLICY_QUEUE                                   uevents.mc     
# Notification of policy change from LSA/SAM failed to be
# added to policy queue.
# %1
  ERROR_INVALID_FLAGS                                           winerror.h     
# Invalid flags.
  EVENT_MAN_PROFILE_NO_FILE_ACCESS                              wlevents.mc    
# The user %1 does not have access to the mandatory profile
# located at %2.
  EVENT_UAE_VERIFICATION_FAILURE                                wlevents2.mc   
# Verification of an automatically enrolled certificate has
# failed. (%1) %2
  WPA_MUST_ACTIVATE_NOW_EVENT                                   wpaevent.mc    
# This copy of Windows must be activated with Microsoft
# before you can continue. To activate Windows, please
# contact a customer service representative.
# 9 matches found for "0x800A03EC"

也许你的xCell,yCell不在UsedRange中。您是否可以单步执行代码“Debug it”并发布与您遇到的场景相匹配的屏幕截图?谢谢。

Solution

你遇到的问题在这里解释:How do I properly clean up Excel interop objects?

要完成它,您可以使用AutoReleaseComObject或原始VSTO-Contrib。以下是一些代码,向您展示如何使用它:

using Microsoft.Office.Interop.Excel;
using System.Runtime.InteropServices;

namespace ExcelInterop
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }        

        Microsoft.Office.Interop.Excel.Application excelApp;

        private void button1_Click(object sender, EventArgs e)
        {
            string path = @"C:\temp\Logfile.CSV";
            int sheetNum = 1;
            string returnValue = string.Empty;
            var missing = Type.Missing;
            int xCell = 1, yCell = 1;

            using (AutoReleaseComObject<Microsoft.Office.Interop.Excel.Application> excelRCWWrapper = new AutoReleaseComObject<Microsoft.Office.Interop.Excel.Application>(new Microsoft.Office.Interop.Excel.Application()))
            {
                var excelApp = excelRCWWrapper.ComObject;
                var excelAppWkBooks = excelApp.Workbooks;
                try
                {
                    using (AutoReleaseComObject<Workbook> excelAppWkBk = new AutoReleaseComObject<Workbook>(excelAppWkBooks.Open(path, false, false, missing, missing, missing, true, missing, missing, true, missing, missing, missing, missing, missing)))
                    {
                        var workbookComObject = excelAppWkBk.ComObject;
                        Worksheet sheetSource = workbookComObject.Sheets[sheetNum];

                        using (AutoReleaseComObject< Range> excelAppRange = new AutoReleaseComObject<Range>(sheetSource.UsedRange))
                        {
                            returnValue = excelAppRange.ComObject.Cells[xCell, yCell].Value2.ToString();
                        }
                        ReleaseObject(sheetSource);
                        workbookComObject.Close(false);
                    }
                }
                finally
                {
                    excelAppWkBooks.Close();
                    ReleaseObject(excelAppWkBooks);

                    excelRCWWrapper.ComObject.Application.Quit();
                    excelRCWWrapper.ComObject.Quit();
                    ReleaseObject(excelRCWWrapper.ComObject.Application);
                    ReleaseObject(excelRCWWrapper.ComObject);

                    GC.Collect();
                    GC.WaitForPendingFinalizers();
                    GC.Collect();
                }
            }
        }

        private static void ReleaseObject(object obj)
        {
            try
            {
                while (System.Runtime.InteropServices.Marshal.ReleaseComObject(obj) > 0) ;
                obj = null;
            }
            catch (Exception ex)
            {
                obj = null;
                Console.WriteLine("Unable to release the Object " + ex.ToString());
            }
        }
    }
}

这是AutoReleaseComObject类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;

namespace ExcelInterop
{
    public class AutoReleaseComObject<T> : IDisposable
    {
        private T m_comObject;
        private bool m_armed = true;
        private bool m_disposed = false;

        public AutoReleaseComObject(T comObject)
        {
            Debug.Assert(comObject != null);
            m_comObject = comObject;
        }

#if DEBUG
        ~AutoReleaseComObject()
        {
            // We should have been disposed using Dispose().
            Debug.WriteLine("Finalize being called, should have been disposed");

            if (this.ComObject != null)
            {
                Debug.WriteLine(string.Format("ComObject was not null:{0}, name:{1}.", this.ComObject, this.ComObjectName));
            }

            //Debug.Assert(false);
        }
#endif

        public T ComObject
        {
            get
            {
                Debug.Assert(!m_disposed);
                return m_comObject;
            }
        }

        private string ComObjectName
        {
            get
            {
                if (this.ComObject is Microsoft.Office.Interop.Excel.Workbook)
                {
                    return ((Microsoft.Office.Interop.Excel.Workbook)this.ComObject).Name;
                }

                return null;
            }
        }

        public void Disarm()
        {
            Debug.Assert(!m_disposed);
            m_armed = false;
        }

        #region IDisposable Members

        public void Dispose()
        {
            Dispose(true);
#if DEBUG
            GC.SuppressFinalize(this);
#endif
        }

        #endregion

        protected virtual void Dispose(bool disposing)
        {
            if (!m_disposed)
            {
                if (m_armed)
                {
                    int refcnt = 0;
                    do
                    {
                        refcnt = System.Runtime.InteropServices.Marshal.ReleaseComObject(m_comObject);
                    } while (refcnt > 0);

                    m_comObject = default(T);
                }

                m_disposed = true;
            }
        }
    }
}

这是一个屏幕截图,显示你让它工作!

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.