日期:2014-05-18 浏览次数:20962 次
private void button1_Click(object sender, EventArgs e) { saveFileDialog1.Title = "保存的excel文件"; saveFileDialog1.InitialDirectory = "c:\\"; saveFileDialog1.Filter = "Excel97-2003 (*.xls)|*.xls|All Files (*.*)|*.*"; saveFileDialog1.ShowDialog(); if (saveFileDialog1.FileName == "" || saveFileDialog1.FileName == null) { MessageBox.Show("文件名不能为空!"); return; } string path = saveFileDialog1.FileName; string constr = "Data Source=.;Initial Catalog=Exhibition;User ID=sa;Password="; string sql = GetStrSql(); DataSet ds=new DataSet(); using (SqlConnection con = new SqlConnection(constr)) { SqlDataAdapter da = new SqlDataAdapter(sql, con); da.Fill(ds); } if (ds == null) { MessageBox.Show("数据获取有误!"); return; } WriteExcel(ds, path); } public void WriteExcel(DataSet ds, string path) { try { long totalCount = ds.Tables[0].Rows.Count; lblTip.Text = "共有" + totalCount + "条数据。"; Thread.Sleep(1000); long rowRead = 0; float percent = 0; StreamWriter sw = new StreamWriter(path, false,Encoding.GetEncoding("gb2312")); StringBuilder sb = new StringBuilder(); for (int k = 0; k < ds.Tables[0].Columns.Count; k++) { sb.Append(ds.Tables[0].Columns[k].ColumnName.ToString() + "\t"); } sb.Append(Environment.NewLine); for (int i = 0; i < ds.Tables[0].Rows.Count; i++) { rowRead++; percent = ((float)(100 * rowRead)) / totalCount; Pbar.Maximum = (int)totalCount; Pbar.Value = (int)rowRead; lblTip.Text = "正在写入[" + percent.ToString("0.00") + "%]...的数据"; System.Windows.Forms.Application.DoEvents(); for (int j = 0; j < ds.Tables[0].Columns.Count; j++) { sb.Append(ds.Tables[0].Rows[i][j].ToString() + "\t"); } sb.Append(Environment.NewLine); } sw.Write(sb.ToString()); sw.Flush(); sw.Close(); MessageBox.Show("已经生成指定Excel文件!"); } catch (Exception ex) { MessageBox.Show(ex.Message); } } public string GetStrSql() { string strSql = "select d.* from ( select cBarcode ,max(case halldoorid When '36' then '1' else '0' end ) [1.1号馆],max(case halld