常見.NET功能代碼匯總 (3)

來源:互聯網
上載者:User

標籤:lease   console   gen   color   message   位置   UI   books   exception   

33,徹底關閉Excel進程

.NET中使用Excel屬於使用非託管資源,使用完成後一般都要用GC回收資源,但是,調用GC的位置不正確,Excel進程可能無法徹底關閉,如下面的代碼:

static void OpenExcelTest(int j)        {            //Application excel = null;            excel = new Application();            excel.Visible = true;            excel.Workbooks.Open("d:\\A1000.xla");            Workbook wb = excel.Application.Workbooks.Open("d:\\Book1.xlsx");            Worksheet sh = wb.Worksheets.Item["Sheet1"];            object[,] ssss = sh.Range[sh.Cells[1.1], sh.Cells[3, 1]].Value2;            Console.WriteLine("opened excel no. {0}", j);            Console.ReadLine();            try            {                //嘗試程式關閉Excel進程                wb.Close(false);                sh = null;                wb = null;                excel.Quit();            }            catch (Exception ex)            {                Console.WriteLine("使用者已經手工結束了Excel進程,內部錯誤訊息:{0}",ex.Message );            }                        int generation = System.GC.GetGeneration(excel);            //No.1            //System.Runtime.InteropServices.Marshal.ReleaseComObject(wb);            //System.Runtime.InteropServices.Marshal.ReleaseComObject(sh);            //System.Runtime.InteropServices.Marshal.ReleaseComObject(excel);                      excel = null;            //No.2            //GC.Collect(generation);            Console.WriteLine("close excel no. {0}", j);            Console.ReadLine();        }

在上面的代碼中,如果取消 No.1,No.2位置處的注釋,方法結束後,Excel進程是無法結束的,解決辦法,只需要把
GC.Collect();
這行代碼寫到方法之外即可。


Application excel = null;
這個Excel應用程式物件定義在方法內或者外都是可以的,哪怕定義一個靜態變數,結果都沒有影響。

 

常見.NET功能代碼匯總 (3)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.