如何正确地读取文本文件列(How to properly read columns from tex

2019-09-19 12:48发布

我试着从一个文本文件中读取数据,并将其加载到数据集,但不同的列在下面的图片是未来仅作为一个长列。 我想返回数据为7列(以同样的方式作为其在图像中出现如下图)。

这是代码正在使用,

public DataSet LoadTxtFile(int numberOfRows)
    {
        DataSet ds = new DataSet();
        //try
        //{
            // Creates and opens an ODBC connection
            string strConnString = "Driver={Microsoft Text Driver (*.txt; *.csv)};Dbq=" + this.dirCSV.Trim() + ";Extensions=asc,csv,tab,txt;Persist Security Info=False";
            string sql_select;
            OdbcConnection conn;
            conn = new OdbcConnection(strConnString.Trim());
            conn.Open();

            //Creates the select command text
            if (numberOfRows == -1)
            {
                sql_select = "select * from [" + this.FileNevCSV.Trim() + "]";
            }
            else
            {
                sql_select = "select top " + numberOfRows + " * from [" + this.FileNevCSV.Trim() + "]";
            }

            //Creates the data adapter
            OdbcDataAdapter obj_oledb_da = new OdbcDataAdapter(sql_select, conn);

            //Fills dataset with the records from CSV file
            obj_oledb_da.Fill(ds, "csv");

            //closes the connection
            conn.Close();
        //}
        //catch (Exception e) //Error
        //{
            //MessageBox.Show(e.Message, "Error - LoadCSV",MessageBoxButtons.OK,MessageBoxIcon.Error);
        //}
        return ds;
    }

Answer 1:

我通常采用一个简单的解决方案,即我访问该文件,我读了所有行,在一个循环我分割线串,创建并填充新的数据行,最后我的数据行添加到数据表:

string[] records = File.ReadAllLines(path);
foreach(string record in records)
{
  DataRow r = myDataTable.NewRow();
  string[] fields = record.Split('\t');
  /* Parse each field into the corresponding r column
   * ....
   */
  myDataTable.rows.Add(r);
}

我还发现关于如何访问与OleDb连接和模式信息文件的CSV文件的解决方案。 我从来没有使用过这种方法。

参考文献:

  • File.ReadAllLInes() 。
  • String.Split() 。
  • 与OLEDB连接计算器相关的问题 。
  • MSDN架构信息文件 。


文章来源: How to properly read columns from text file