关于asp.net导出Excel出现“异常来自 HRESULT:0x800A03EC”错误解决方法

        ///


        /// 导出Excel
        ///

        [TestMethod]
        public void ExportExcel()
        {
            string excelFileName  = "E:\\IoTPlatform\\IoTPlatformSolution\\IoTPlatformUnitTest\\xml\\ceExcel";
 string sql = @"select *  from dbo.MonitorProjects where MonitorProjectName = 'textPN_4935'";
            mycon.Open();
            SqlDataAdapter myda = new SqlDataAdapter(sql, conStr);
            DataSet myds = new DataSet();
            myda.Fill(myds);
            Application excel = new Application();
            int rowIndex = 1;
            int colIndex = 0;
            excel.Application.Workbooks.Add(true);
            System.Data.DataTable table = myds.Tables[0];
            foreach (DataColumn dc in table.Columns)
            {
                colIndex++;
                excel.Cells[1, colIndex] = dc.ColumnName;
            }
            foreach (DataRow dr in table.Rows)
            {
                rowIndex++;
                colIndex = 0;
                foreach (DataColumn dc in table.Columns)
                {
                    colIndex++;
                    excel.Cells[rowIndex, colIndex] = dr[dc.ColumnName].ToString();
                }
            }
            excel.Visible = false;
            //Excel.XlFileFormat.xlWorkbookNormal与自己本机的版本要一致
            excel.ActiveWorkbook.SaveAs(excelFileName + ".xls", Excel.XlFileFormat.xlWorkbookNormal, null, null, false, false, Excel.XlSaveAsAccessMode.xlNoChange, null, null, null, null, null);
            excel.Quit();
            excel = null;
            GC.Collect();//垃圾回收   
        }

你可能感兴趣的:(Excel,excel)