整理的 C# DataSet導出至Excel文件(2)

 整理的 C# DataSet導出至Excel文件       
        //方法1
        public bool SavetoExcel(string Path, DataSet ds)
        {
            try
            {
                string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + Path + ";" + "Extended Properties=Excel 8.0;";
                OleDbConnection conn = new OleDbConnection(strConn);
                conn.Open();
                System.Data.OleDb.OleDbCommand cmd = new OleDbCommand();
                cmd.Connection = conn;

                int RowCount = ds.Tables[0].Rows.Count;
                string strfiles = "";

                for (int i = 1; i <= ds.Tables[0].Columns.Count; i++)
                {
                    strfiles = strfiles + "A" + i.ToString() + " ,";
                }
                for (int i = 0; i < RowCount; i++)
                {
                    string strValues = "";
                    for (int j = 0; j < ds.Tables[0].Columns.Count; j++)
                    {
                        strValues = strValues + " '" + ds.Tables[0].Rows[i][j].ToString() + "' ,";
                    }

                    //cmd.CommandText = "INSERT INTO [sheet1$]  VALUES("+strValues.TrimEnd(',') +" )";

                    cmd.CommandText = "INSERT INTO [sheet1$](" + strfiles.TrimEnd(',') + ") select " + strValues.TrimEnd(',') + " ";
                    cmd.ExecuteNonQuery();

                }
                conn.Close();
                cmd.Dispose();
                return true;
            }
            catch (System.Data.OleDb.OleDbException ex)
            {
                System.Diagnostics.Debug.WriteLine("寫入Excel發生錯誤:" + ex.Message);
            }
            return false;
        }
         * */
        #endregion

        //方法2 導出 EXCEL 文件
        protected void ExportExcel(string strExportFilename, DataSet dsResultData)
        {
            if (dsResultData == null) return;

            string saveFileName = strExportFilename;

            Excel.Application xlApp = new Excel.Application();
            object missing = System.Reflection.Missing.Value;

            if (xlApp == null)
            {
                MessageBox.Show("無法創建Excel對象,可能您的機子未安裝Excel");
                return;
            }
            Excel.Workbooks workbooks = xlApp.Workbooks;
            Excel.Workbook workbook = workbooks.Add(Excel.XlWBATemplate.xlWBATWorksheet);
            Excel.Worksheet worksheet = (Excel.Worksheet)workbook.Worksheets[1];//取得sheet1

            // string oldCaption = Title_label.Text.Trim();
            long totalCount = dsResultData.Tables[0].Rows.Count;

            for (int i = 0; i < dsResultData.Tables[0].Columns.Count; i++)
            {
                int IndexCol = arrColumn.IndexOf(dsResultData.Tables[0].Columns[i].Caption );
                if (IndexCol > -1)
                {
                    worksheet.Cells[1, i + 1] = arrColumnName[IndexCol ];// dsResultData.Tables[0].Columns[i].ColumnName;
                }
            }

            //寫入數值
            // System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption.Visible = true;
            for (int r = 0; r < dsResultData.Tables[0].Rows.Count; r++)
            {
                for (int i = 0; i < dsResultData.Tables[0].Columns.Count; i++)
                {
                    worksheet.Cells[r + 2, i + 1] = dsResultData.Tables[0].Rows[r][i].ToString();
                }
              
                Application.DoEvents();
            }
            worksheet.SaveAs(saveFileName, missing, missing, missing, missing, missing, missing, missing, missing, missing);
            //worksheet.SaveAs(saveFileName, missing, missing, missing, missing, missing, missing, missing, missing);

            //this.Caption.Visible = false;
            //this.Caption.Text = oldCaption;

            //range = worksheet.get_Range(worksheet.Cells[2, 1], worksheet.Cells[dsResultData.Tables[0].Rows.Count + 2, dsResultData.Tables[0].Columns.Count]);
            ////range.BorderAround(Excel.XlLineStyle.xlContinuous, Excel.XlBorderWeight.xlThin, Excel.XlColorIndex.xlColorIndexAutomatic, null);

            ////range.Borders[Excel.XlBordersIndex.xlInsideHorizontal].ColorIndex = Excel.XlColorIndex.xlColorIndexAutomatic;
            ////range.Borders[Excel.XlBordersIndex.xlInsideHorizontal].LineStyle = Excel.XlLineStyle.xlContinuous;
            ////range.Borders[Excel.XlBordersIndex.xlInsideHorizontal].Weight = Excel.XlBorderWeight.xlThin;

            //if (dsResultData.Tables[0].Columns.Count > 1)
            //{
            //    range.Borders[Excel.XlBordersIndex.xlInsideVertical].ColorIndex = Excel.XlColorIndex.xlColorIndexAutomatic;
            //}
            workbook.Close(missing, missing, missing);
            xlApp.Quit();
        }

-------------------------

給自己淘寶小店做個廣告:新上品質超好的嬰幼兒用品,大家快來看看哦,針對老顧客全部進價銷售!
http://lovehealthylife.taobao.com/

主營孕婦裝,防輻射裝,嬰幼兒用品,自用送人都很合適!雖然沒有搞折扣優惠之類的活動,但絕對質優價廉!比搞活動的還便宜!你懂滴

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章