C#读取Excel数据有几点需要注意的:
1.连接字符串中参数IMEX 的值:
0 is Export mode 1 is Import mode 2 is Linked mode (full update capabilities)
IMEX有3个值:当IMEX=2 时,EXCEL文档中同时含有字符型和数字型时,比如第C列有3个值,2个为数值型 123,1个为字符型 ABC,当导入时,页面不报错了,但库里只显示数值型的123,而字符型的ABC则呈现为空值。当IMEX=1时,无上述情况发生,库里可正确呈现 123 和 ABC.
2.参数HDR的值:
HDR=Yes,这代表***行是标题,不做为数据使用 ,如果用HDR=NO,则表示***行不是标题,做为数据来使用。系统默认的是YES
3.参数Excel 8.0
对于C#读取Excel数据,Excel 97以上版本都用Excel 8.0
- ///
- /// C#读取Excel数据,将内容存储在DataSet中
- ///
- /// 带路径的Excel文件名
- ///
DataSet - private DataSet ExcelToDataSet(string opnFileName)
- ...{
- string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+opnFileName+";Extended Properties=\"Excel 8.0;HDR=YES;IMEX=1\"";
- OleDbConnection conn = new OleDbConnection(strConn);
- string strExcel = "";
- OleDbDataAdapter myCommand = null;
- DataSet ds = new DataSet();
- strExcel = "select * from [sheet1$]";
- try
- ...{
- conn.Open();
- myCommand = new OleDbDataAdapter(strExcel, strConn);
- myCommand.Fill(ds,"dtSource");
- return ds;
- }
- catch (Exception ex)
- ...{
- MessageBox.Show("导入出错:" + ex, "错误信息");
- return ds;
- }
- finally
- ...{
- conn.Close();
- conn.Dispose();
- }
- }
【编辑推荐】