程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C# ListView導出Excel文件

C# ListView導出Excel文件

編輯:C#入門知識

 
public void ExportToExecl()  
        {  
            System.Windows.Forms.SaveFileDialog sfd = new SaveFileDialog();  
            sfd.DefaultExt = "xls";  
            sfd.Filter = "Excel文件(*.xls)|*.xls";  
            if (sfd.ShowDialog() == DialogResult.OK)  
            {  
                DoExport(this.lvreport, sfd.FileName);  
            }  
        }  
 
 
        #region Kill Special Excel Process  
        [DllImport("user32.dll", SetLastError = true)]  
        static extern int GetWindowThreadProcessId(IntPtr hWnd, out int lpdwProcessId);  
  
  
        private void DoExport(ListView listView, string strFileName)  
        {  
            int rowNum = listView.Items.Count;  
            int columnNum = listView.Items[0].SubItems.Count;  
            int rowIndex = 1;  
            int columnIndex = 0;  
            if (rowNum == 0 || string.IsNullOrEmpty(strFileName))  
            {  
                return;  
            }  
            if (rowNum > 0)  
            {  
  
  
                Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application();  
                if (xlApp == null)  
                {  
                    MessageBox.Show("無法創建excel對象,可能您的系統沒有安裝excel");  
                    return;  
                }  
                xlApp.DefaultFilePath = "";  
                xlApp.DisplayAlerts = true;  
                xlApp.SheetsInNewWorkbook = 1;  
                Microsoft.Office.Interop.Excel.Workbook xlBook = xlApp.Workbooks.Add(true);  
                //將ListView的列名導入Excel表第一行  
                foreach (ColumnHeader dc in listView.Columns)  
                {  
                    columnIndex++;  
                    xlApp.Cells[rowIndex, columnIndex] = dc.Text;  
                }  
                //將ListView中的數據導入Excel中  
                for (int i = 0; i < rowNum; i++)  
                {  
                    rowIndex++;  
                    columnIndex = 0;  
                    for (int j = 0; j < columnNum; j++)  
                    {  
                        columnIndex++;  
                        //注意這個在導出的時候加了“\t” 的目的就是避免導出的數據顯示為科學計數法。可以放在每行的首尾。  
                        xlApp.Cells[rowIndex, columnIndex] = Convert.ToString(listView.Items[i].SubItems[j].Text) + "\t";  
                    }  
                }  
                //例外需要說明的是用strFileName,Excel.XlFileFormat.xlExcel9795保存方式時 當你的Excel版本不是95、97 而是2003、2007 時導出的時候會報一個錯誤:異常來自 HRESULT:0x800A03EC。 解決辦法就是換成strFileName, Microsoft.Office.Interop.Excel.XlFileFormat.xlWorkbookNormal。  
                xlBook.SaveAs(strFileName, Microsoft.Office.Interop.Excel.XlFileFormat.xlWorkbookNormal, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlExclusive, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);  
                xlApp = null;  
                xlBook = null;  
                MessageBox.Show("導出報表成功!");  
                  
                try  
                {  
                    if (xlApp != null)  
                    {  
                        int lpdwPeocessId;  
                        GetWindowThreadProcessId(new IntPtr(xlApp.Hwnd), out lpdwPeocessId);  
                        System.Diagnostics.Process.GetProcessById(lpdwPeocessId).Kill();  
                    }  
                }  
                catch (System.Exception ex)  
                {  
                    Console.WriteLine("Delete Excel Process Error:" + ex.Message);  
                }  
            }  
        }  
        #endregion  

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved