如何将文本文件的行添加到ListBox(C#)上的各个项中

本文关键字:文本 文件 添加 ListBox | 更新日期: 2023-09-27 18:00:35

如何读取一个有几行的文本文件,然后将文本文件中的每一行放在ListBox中的一行?

到目前为止我拥有的代码:

richTextBox5.Text = File.ReadAllText("ignore.txt");

如何将文本文件的行添加到ListBox(C#)上的各个项中

String text = File.ReadAllText("ignore.txt");
var result = Regex.Split(text, "'r'n|'r|'n");
foreach(string s in result)
{
  lstBox.Items.Add(s);
}
string[] lines = System.IO.File.ReadAllLines(@"ignore.txt");
foreach (string line in lines)
{
    listBox.Items.Add(line);
}

编写一个助手方法,返回行的集合

   static IEnumerable<string> ReadFromFile(string file) 
    {// check if file exist, null or empty string
        string line;
        using(var reader = File.OpenText(file)) 
        {
            while((line = reader.ReadLine()) != null) 
            {
                yield return line;
            }
        }
    }

使用

var lines = ReadFromFile(myfile);
myListBox.ItemsSource = lines.ToList(); // or change it to ObservableCollection. also you can add to the end line by line with myListBox.Items.Add()

您应该使用streamreader一次读取一行文件。

using (StreamReader sr = new StreamReader("ignore.txt"))
{
  string line;
  while ((line = sr.ReadLine()) != null)
    listBox1.Items.Add(line);
}

StreamReader信息->http://msdn.microsoft.com/en-us/library/system.io.streamreader.aspx

列表框信息->http://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.aspx