oledb方式读取excel文件

进入博客园后台发现12年11月份写的草稿没发,时隔1年,把它拉出来晒晒太阳。

前言

第一次做Excel文件导入,采用了oledb,不足之处,还请各位大牛指出,谨以此文对导入Excel做个总结。

一般步骤

实际上,读取Excel文件和读取数据库是一样的,毕竟Excel也是数据源的一种。读取Excel的一般步骤为:

1.引入相关命名空间,此处引入:

using System.Data;
using System.Data.OleDb;

2.设置连接字符串:

 private static string strCon = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source={0};Extended Properties='Excel 8.0;HDR=Yes;IMEX=1;'";

3.读取Excel

        /// <summary>
/// 读取Excel中的数据(工作表)
/// </summary>
/// <param name="resultDataTable"></param>
/// <param name="filePath"></param>
public static void ReadFromExcel(ref DataSet ds, string path, string sheet_name)
{
using (OleDbConnection excelConnection = new OleDbConnection(string.Format(strCon, path)))
{
//打开连接
excelConnection.Open();
OleDbDataAdapter objAdapter = new OleDbDataAdapter();
OleDbCommand command = new OleDbCommand();
command.Connection = excelConnection;
objAdapter.SelectCommand = command; //指定范围内的读取
objAdapter.SelectCommand.CommandText = string.Format("SELECT * FROM [{0}]", sheet_name+ "$A4:H10000");
//向ds中填充数据
objAdapter.Fill(ds, sheet_name);
//关闭连接
excelConnection.Close();
}
}

代码有注释,就不解释了。

上一篇:ArcGIS中添加进自定义的ttf字符标记符号


下一篇:ASP.NET读取EXCEL文件的三种经典方法