【C#项目实战】将EXCEl表格导入DataSet

【前言】

还是做的抽奖系统里的, 将人名单导入到DataSet里去。

【正文】

        单击导入按钮后

    private void btnLook_Click(object sender, EventArgs e)
        {
            //打开文件进行导入
            OpenFileDialog openFile = new OpenFileDialog();
            //路径
            openFile.InitialDirectory = "C:\\";
            //选择文件类型
            openFile.Filter = "工作薄(*.xls)|*.xls|C#文件|*.cs|所有文件|*.*";
            openFile.FilterIndex = 1;
            openFile.RestoreDirectory = true;
            //保存路径到文本框中
            if (openFile.ShowDialog() == DialogResult.OK)
            {
                user = openFile.FileName;
            }

            //判断文本框内的内容从而判断是否选择了文件
            try
            {
                if (user != "")
                {
                    //由excel表导入到数据库的缓存中
                    ds = ExecelToDS(user);
                    MessageBox.Show("数据导入成功!");
                    btnLook.Visible=false;
                }
                else
                {
                    MessageBox.Show("您还没有选择文件!");
                }

            }
            catch (Exception)
            {

                MessageBox.Show("您还没有导入文件呦!");
            }
        }
ExcelToDS方法{}

         //excel的版本
            string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + Path + ";" + "Extended Properties=Excel 8.0;";
            OleDbConnection conn = new OleDbConnection(strConn);
            conn.Open();
            string strExcel = "";
            OleDbDataAdapter myCommand = null;
            DataSet ds = null;
            //excel默认的第一个表
            strExcel = "select * from [sheet1$] where 是否中奖='否'";
            myCommand = new OleDbDataAdapter(strExcel, strConn);
            ds = new DataSet();
            myCommand.Fill(ds, "table1");
            return ds;

【总结】

        做了个小东西也把有用的东西都留下来。 以后做个参考, 刚刚再看这个导入,想起导出时为了提高效率用了流, 导入应该也能。 不过还没尝试过。

评论 19
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

码农胖虎-java

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值