当前位置:编程学习 > C#/ASP.NET >>

C#读取CSV文件

C#读取CSV文件
很多项目中都需要操作CSV文件,我看到很多人都会编码读取CSV文件中的第一行并解释其中的每一个列的值,

相对来说这有难度,

一来要求开发人员对字符串处理比较熟悉,

二来要求对CSV的文件结构要有相当的了解,难度较大,编写的代码质量也要经过一段时间的考验,

但其实有一种更简单的方法,即使用微软的文本驱动程序,以表的形式来访问CSV文件。

具体代码如下所示

  public DataTable GetCsvData(string filePath, string fileName)

        {

            string path = filePath + "\\" + fileName + ".csv";

            string connString = @"Driver={Microsoft Text Driver (*.txt; *.csv)};Dbq=" + filePath + ";Extensions=csv";

            try

            {

                using (OdbcConnection odbcConn = new OdbcConnection(connString))

                {

                    odbcConn.Open();

                    OdbcCommand oleComm = new OdbcCommand();

                    oleComm.Connection = odbcConn;

                    oleComm.CommandText = "select * from [" + fileName + "#csv]";

                    OdbcDataAdapter adapter = new OdbcDataAdapter(oleComm);

                    DataSet ds = new DataSet();

                    adapter.Fill(ds, fileName);


                    odbcConn.Close();

                    return ds.Tables[0];


                }

              

            }

            catch (Exception ex)

            {

              

                throw ex;

            }

        }


 

补充:软件开发 , C# ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,