在datagridview中打开TXT格式的数据
using System.IO;
//input&output
private void 打开ToolStripMenuItem_Click(object sender, EventArgs e)
{
dataGridView.Rows.Clear();
OpenfileDialog(o゚▽゚)o =new OpenfileDialog();
//创建对话框
(o゚▽゚)o.Filter="文本文件|*.txt";
//定义打开文件的类型
(o゚▽゚)o.ShowDialog();
//打开文件对话框
stringpath=(o゚▽゚)o.FileName;
if(path=="")
{
return;
}
string[] str=File.ReadAllLines(path,Encoding,Default);
//打开一个文件,使用指定的编码读取文件所有行
for(int i=0;i
{
int j=0;
string[] s=str[i].Split(new char[]{','});
//用于把一个字符串分割成字符串数组
dataGridView.Rows.Add(s[i][j++],~);
}
}
想跟着我一起学习,淘宝,涨知识的小伙伴们快来关注我吧!
领取专属 10元无门槛券
私享最新 技术干货