.NET读取Excel为datatable

/// <summary>
        /// 将Excel读取为DataTable
        /// </summary>
        /// <param name="filePath">服务器文件绝对路径,包括文件名</param>
        /// <param name="fileName">文件名</param>
        /// <param name="needHead">是否将第一行作为表头</param>
        /// <param name="allTypeText">是否将所有数据读为文本格式(该选项将固定读取65535行数据)</param>
        /// <returns></returns>
        public static DataTable ReadExcelToDataTable(string filePath, string fileName, bool needHead, bool allTypeText)
        {
            DataTable dt = new DataTable();
            OleDbConnection conn = null;
            OleDbDataAdapter myCommand = null;
            string type = "";
            if (needHead)
                type += "HDR=YES;";
            if (allTypeText)
                type += "IMEX=1;";
            try
            {
                string strConn = string.Empty;
                if (fileName.EndsWith(".xlsx"))
                    strConn = string.Format("Provider=Microsoft.ACE.OLEDB.12.0;Extended Properties='Excel 12.0;{0}';data source={1}", type, filePath);
                else if (fileName.EndsWith(".xls"))
                    strConn = string.Format("Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties='Excel 8.0;{0}';Data Source={1};", type, filePath);
                conn = new OleDbConnection(strConn);
                conn.Open();
                //返回Excel的架构,包括各个sheet表的名称,类型,创建时间和修改时间等
                DataTable dtSheetName = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "Table" });
                if (dtSheetName == null || dtSheetName.Rows.Count < 1)
                    throw new Exception("请上传正确的Excel!");
                //包含excel中表名的字符串数组
                string[] strTableNames = new string[dtSheetName.Rows.Count];
                for (int k = 0; k < dtSheetName.Rows.Count; k++)
                    strTableNames[k] = dtSheetName.Rows[k]["TABLE_NAME"].ToString();

                //从指定的表明查询数据,可先把所有表明列出来供用户选择
                string strExcel = "select * from [" + strTableNames[0] + "]";
                myCommand = new OleDbDataAdapter(strExcel, strConn);
                dt = new DataTable();
                myCommand.Fill(dt);

            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (myCommand != null)
                    myCommand.Dispose();
                conn.Close();
                conn.Dispose();
            }
            return dt;

        }

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值