在窗口应用程序中将文本文件加载到数据网格视图中 [英] load a text file into data grid view in window application

查看:71
本文介绍了在窗口应用程序中将文本文件加载到数据网格视图中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好
我想在此文件中加载文本文件,第一行是列标题",其他数据行和数据分隔符为",我如何使用c#窗口应用程序将文本文件加载到datagrid视图中.请回复我

谢谢

hello
i want to load a text file in this file first row is "Column Header" and other data row and data Separator with "," how i can load a text file into datagrid view using c# window application. Plz Reply me

Thanks

推荐答案


您可以遍历文件,然后将它们添加到DataTable中.然后,您可以将DataTable绑定到您的DataGridView.
阅读文本文件的帖子:
http://www.csharp-station.com/HowTo/ReadWriteTextFile.aspx [ ^ ]
有关DataTable的帖子:
http://www.dotnetperls.com/datatable [
Hi,
You can iterate through your file and then add them to a DataTable. then, you can bind the DataTable to your DataGridView.
A post to read a text file:
http://www.csharp-station.com/HowTo/ReadWriteTextFile.aspx[^]
A post about DataTable:
http://www.dotnetperls.com/datatable[^]

I hope it helps,
Cheers


可以使用以下代码将问题中指定格式的文本文件中包含的数据读入DataTable,并将DataTable绑定到DataGridView.
The data contained in the text file in the format specified in the question can be read into a DataTable and the DataTable can be bound to a DataGridView using the following code
void Main()
{
	Form form1 = new Form();
	DataGridView dataGridView1 = new DataGridView();
	dataGridView1.Dock= DockStyle.Fill;

        //Read the data from text file
	string[] textData = System.IO.File.ReadAllLines(dataFileName);
	string[] headers = textData[0].Split(',');

        //Create and populate DataTable
	DataTable dataTable1 = new DataTable();
	foreach(string header in headers)
	    dataTable1.Columns.Add(header,typeof(string),null);
	for(int i=1; i < textdata.length; i++)
            dataTable1.Rows.Add(textData[i].Split(','));

        //Set the DataSource of DataGridView to the DataTable
	dataGridView1.DataSource = dataTable1;
	form1.Controls.Add(dataGridView1);
	form1.ShowDialog();
}


这篇关于在窗口应用程序中将文本文件加载到数据网格视图中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆