使用C#在Windows Form Application上从CSV文件读取和显示数据

我编写了以下代码以从.csv文件读取数据:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;

namespace CSVRead
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void buttonRead_Click(object sender, EventArgs e)
        {
            DataTable dataTable = new DataTable();
            dataTable.Columns.Add("Username");
            dataTable.Columns.Add("Password");
            dataTable.Columns.Add("MachineID");
            string filePath = textBox1.Text;
            StreamReader streamReader = new StreamReader(filePath);
            string[] totalData = new string[File.ReadAllLines(filePath).Length];
            totalData = streamReader.ReadLine().Split(',');
            while (!streamReader.EndOfStream)
            {
                totalData = streamReader.ReadLine().Split(',');
                dataTable.Rows.Add(totalData[0], totalData[1], totalData[2]);
            }
            dataGridView1.DataSource = dataTable;
        }

        private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {

        }
    }
}

这是我的CSV文件数据(readCSV.csv):

Username, Password, MachineID
abc, abc, 123
jkl, jkl, 789
rst, rst, 456

我的Windows窗体应用程序中有一个dataGridView(请参阅下面的图像链接,因为我没有足够的声誉来发布图像),并且想要在此网格视图中显示CSV文件中的数据.这段代码不会引发任何错误/警告,但只是没有按照应有的方式执行.单击“查找”按钮时,数据不会显示在dataGridView中.我正在使用Visual Studio 2013专业版.

使用C#在Windows Form Application上从CSV文件读取和显示数据

傻我:糟糕!上面的代码可以正常工作…我在远程计算机上编写代码,并将文件存储在本地计算机上.另外,按钮单击事件的名称输入错误.

注意:答案已被标记为接受,因为它的逻辑也起作用.我在上面的问题中编写的代码也可以正常工作

解决方法:

这是解决您的问题的有效示例.但是,在您开始阅读CVS文件或excel文件时,您应该了解的很少.对于excel文件,总是第一行是列的名称,因此您无需手动将列添加到数据表中

 try
            {
                // your code here 
     string CSVFilePathName = @"path and file name";
                string[] Lines = File.ReadAllLines(CSVFilePathName);
                string[] Fields;
                Fields = Lines[0].Split(new char[] { ',' });
                int Cols = Fields.GetLength(0);
                DataTable dt = new DataTable();
                //1st row must be column names; force lower case to ensure matching later on.
                for (int i = 0; i < Cols; i++)
                    dt.Columns.Add(Fields[i].ToLower(), typeof(string));
                DataRow Row;
                for (int i = 1; i < Lines.GetLength(0); i++)
                {
                    Fields = Lines[i].Split(new char[] { ',' });
                    Row = dt.NewRow();
                    for (int f = 0; f < Cols; f++)
                        Row[f] = Fields[f];
                    dt.Rows.Add(Row);
                }
                dataGridClients.DataSource = dt;  
 }
            catch (Exception ex )
            {
                MessageBox.Show("Error is " + ex.ToString());
                throw;
            }
上一篇:c#-在带有绑定的DataGridView中隐藏行在我的项目中不起作用


下一篇:按下键在datagridview中添加行