datagridview导出excel报表函数

本文介绍了一种将DataGridView中的数据导出到Excel的方法。通过使用C#编程语言,该过程包括创建保存对话框以选择文件名及路径,并利用StreamWriter将DataGridView的数据逐行写入Excel文件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 public static void ExportDataGridViewToExcel(DataGridView dataGridview1)
        {
            try
            {
                if (dataGridview1.Rows.Count > 0)
                {
                    SaveFileDialog saveFileDialog = new SaveFileDialog();
                    saveFileDialog.Filter = "Execl  files  (*.xls)|*.xls";
                    //  saveFileDialog.Filter = "txt  files  (*.txt)|*.txt";
                    saveFileDialog.FilterIndex = 0;
                    saveFileDialog.RestoreDirectory = true;
                    saveFileDialog.CreatePrompt = true;
                    saveFileDialog.Title = "导出Excel文件到";
                    DateTime now = DateTime.Now;
                    saveFileDialog.FileName = now.Year.ToString().PadLeft(2) + now.Month.ToString().PadLeft(2, '0') + now.Day.ToString().PadLeft(2, '0') + "-" + now.Hour.ToString().PadLeft(2, '0') + now.Minute.ToString().PadLeft(2, '0') + now.Second.ToString().PadLeft(2, '0');
                    DialogResult Result = saveFileDialog.ShowDialog();
                    if (Result == DialogResult.Cancel) //取消导出操作的处理
                    {
                        return;
                    }
                    StreamWriter sw;
                    Stream myStream;
                    myStream = saveFileDialog.OpenFile();
                    sw = new StreamWriter(myStream, System.Text.Encoding.GetEncoding("gb2312"));
                    string str = "";
                    try
                    {
                        //写标题   
                        for (int i = 0; i < dataGridview1.ColumnCount; i++)
                        {
                            if (dataGridview1.Columns[i].Visible)
                            {
                                if (i > 0)
                                {
                                    str += "\t";
                                }
                                str += dataGridview1.Columns[i].HeaderText;
                            }
                        }
                        sw.WriteLine(str);
                        //写内容
                        for (int j = 0; j < dataGridview1.Rows.Count; j++)
                        {
                            string tempStr = "";
                            for (int k = 0; k < dataGridview1.Columns.Count; k++)
                            {
                                if (dataGridview1.Rows[j].Cells[k].Visible)
                                {
                                    if (k > 0)
                                    {
                                        tempStr += "\t";
                                    }
                                    if (dataGridview1.Rows[j].Cells[k].Value != null)
                                    {
                                        tempStr += dataGridview1.Rows[j].Cells[k].Value.ToString();
                                    }
                                    else
                                    {
                                        tempStr += "";
                                    }
                                }
                            }
                            sw.WriteLine(tempStr);
                        }
                    }
                    catch (Exception e)
                    {
                        //MessageBox.Show(e.ToString());
                    }
                    finally
                    {
                        sw.Close();
                        myStream.Close();
                        MessageBox.Show("导出成功!存放路径:" + saveFileDialog.FileName);
                    }
                }
                else
                {
                    //MessageBox.Show("没有数据可供导出!", "警告", MessageBoxButtons.OK);
                    return;
                }
            }
            catch
            {
                MessageBox.Show("导出数据出错,请重新操作!", "提示", MessageBoxButtons.OK);
            }
        }
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值