c# txt导入listView中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# txt导入listView中相关的知识,希望对你有一定的参考价值。
求txt导入listView中代码,不要思路!!求实现代码!
参考技术A 方法如下,先添加 openFileDialog ,然后拖个按钮双击按钮。
private void button1_Click(object sender, EventArgs e)
openFileDialog1.Filter = "文本文件(*.txt)|*.txt";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
FileStream fs = new FileStream(openFileDialog1.FileName, FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(fs);
while (sr.Peek() != -1)
t_to.Items.Add(sr.ReadLine());
如果有什么不明白的可以HI百度我~追问
因为我文本中的内容是“|”分割,而且有时候如aaavb|cdf,dsa|adf|dfre|sdf,
krjsmmmr|khemfn|24859
应该怎么实现
先把字符串转换成数组
string a = "krjsmmmr|khemfn|24859;
string[] b = a.Split('|');
然后在循环数组输出
以上是关于c# txt导入listView中的主要内容,如果未能解决你的问题,请参考以下文章
C# winForm 将datagridview 控件中的数据(大约有六千行甚至更多),导入到listview中显示时,卡死了。