public static void ExportToExcel(DataTable dt, string fileName)
                  {
                      //在做這些前,將Excl添加到引用中來!!
                      Excel.Application excel = new Excel.Application();
                      //如果系統是Excl2007,添加的引用會不一樣,代碼如下。
                      //Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.Application();
                      if (excel == null)
                      {
                        
                      }
                      else
                      {
                          Excel.Workbook xlBook = excel.Workbooks.Add(true);
                          Excel.Worksheet xlSheet = (Excel.Worksheet)xlBook.Worksheets[1];
                          //excel.Application.Workbooks.Add(true);           
                          int cols = dt.Columns.Count;
                          int rows = dt.Rows.Count;
                          //列
                          for (int k = 0; k < cols; k++)
                          {
                              excel.Cells[1, k + 1] = dt.Columns[k].ColumnName;
                          }
                          //數據
                          for (int i = 0; i < rows - 1; i++)
                          {
                              for (int j = 0; j < cols; j++)
                              {
                                
                                      excel.Cells[i + 2, j + 1] = dt.Rows[i][j].ToString();
                              }
                          }
             
                          try
                          {
                              xlBook.Saved = true;
                              xlBook.SaveCopyAs(fileName);
                          }
                          catch
                          {
                       
                          }
                    
                      }
                  }

          http://files.cnblogs.com/wangdetian168/Interop.Excel.rar

          posted on 2010-10-22 01:48 sanmao 閱讀(381) 評論(0)  編輯  收藏

          只有注冊用戶登錄后才能發表評論。


          網站導航:
           

          常用鏈接

          留言簿(5)

          隨筆分類

          隨筆檔案

          搜索

          •  

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 中江县| 察哈| 凤凰县| 木里| 杭锦旗| 桃园县| 康马县| 宁乡县| 蓬溪县| 简阳市| 曲阳县| 聊城市| 中方县| 古田县| 五原县| 临安市| 昌乐县| 阿拉善左旗| 获嘉县| 惠东县| 盐城市| 兴化市| 西乡县| 淄博市| 诸暨市| 楚雄市| 德清县| 兰溪市| 富民县| 南雄市| 行唐县| 民县| 喜德县| 望奎县| 比如县| 策勒县| 绥中县| 玉环县| 咸丰县| 光山县| 麻城市|