我编写了以下代码以从.csv文件读取数据:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using ...
我编写了以下代码以从.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专业版.
傻我:糟糕!上面的代码可以正常工作…我在远程计算机上编写代码,并将文件存储在本地计算机上.另外,按钮单击事件的名称输入错误.
注意:答案已被标记为接受,因为它的逻辑也起作用.我在上面的问题中编写的代码也可以正常工作
解决方法:
这是解决您的问题的有效示例.但是,在您开始阅读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#在Windows Form Application上从CSV文件读取和显示数据
基础教程推荐
- Unity实现鼠标点2D转3D进行旋转 2023-02-16
- C#中Dispose和Finalize方法使用介绍 2023-05-26
- c#多线程程序设计实例方法 2023-01-16
- C#给PDF文件添加水印 2022-11-06
- C#中Datetimepicker出现问题的解决方法 2023-01-06
- c# – 在StackExchange.Redis中执行搜索 2023-11-23
- C#正则表达式大全 2023-06-04
- WPF如何绘制光滑连续贝塞尔曲线示例代码 2022-12-11
- C# Winform中如何绘制动画示例详解 2023-02-17
- C#实现Socket服务器及多客户端连接的方式 2023-05-16