NET导入 Excel方法

本博客介绍了一段代码,用于从用户上传的Excel文件中读取优惠券信息,并将其导入到数据库中。代码包括文件路径验证、文件名处理、文件保存和数据导入流程。
protected void Button1_Click(object sender, EventArgs e)
    {
        DataTable dt = null;
        string path = "", f_folder, f_name;
        int j = 0;
        try
        {
            path = this.FileUpload1.FileName;
            if (path == "")
            {
                Response.Write("<script>alert('请选择Excel文件路径!')</script>");
                return;
            }

            f_name = System.DateTime.Now.ToString();

            f_name = f_name.Replace(" ", "");
            f_name = f_name.Replace("-", "");
            f_name = f_name.Replace(":", "");
            f_name = f_name.Replace("/", "");
            f_folder = Server.MapPath(@"../upfile/" + f_name + ".xls");
            this.FileUpload1.PostedFile.SaveAs(f_folder);

            // string sheetname = this.txtTable_Name.Text.Trim();
            dt = ExcelDataSource(f_folder, "Sheet1");
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                Cut c = new Cut();
                c.Name=dt.Rows[i]["优惠券号"].ToString();
                c.Cuts = dt.Rows[i]["折扣"].ToString();
                if (CutsManager.Add(c) == "1")
                {
                    j++;
                }
            }
            if (File.Exists(Server.MapPath(@"../upfile/" + f_name + ".xls")))
            {
                File.Delete(f_folder);
            }
            string s = "成功导入输入" + j + "条!";
            if (j == dt.Rows.Count)
            {
                Response.Write("<script>alert('" + s + "')</script>");

            }
        }
        catch
        {
            Response.Write("<script>alert('数据格式出错!')</script>");
        }
    }
    public DataTable ExcelDataSource(string filepath, string sheetname)
    {
        string strConn = String.Empty;
        if (System.IO.Path.GetExtension(filepath).Equals(".xlsx"))
        {
            strConn = "Provider=Microsoft.ACE.OLEDB.12.0;Extended Properties='Excel 12.0;HDR=YES';data source=" + filepath;
        }
        else if (System.IO.Path.GetExtension(filepath).Equals(".xls"))
        {
            //strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + filepath + ";" + "Extended Properties=Excel 8.0;";
            strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + filepath + ";Extended Properties=Excel 8.0;";
        }
        OleDbConnection conn = new OleDbConnection(strConn);
        OleDbDataAdapter oada = new OleDbDataAdapter("select * from [" + sheetname + "$]", strConn);
        DataTable ds = new DataTable();
        oada.Fill(ds);
        conn.Close();
        return ds;
    }


评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值