C#保存listbox中数据到文本文件的方法
时间:2020-10-27 12:13:40|栏目:.NET代码|点击: 次
本文实例讲述了C#保存listbox中数据到文本文件的方法。分享给大家供大家参考。具体实现方法如下:
private void SaveLstToTxt(ListBox lst) { sfd.Filter = "(*.txt)|*.txt"; if (sfd.ShowDialog() == DialogResult.OK) { string sPath = sfd.FileName; FileStream fs = new FileStream(sPath, FileMode.Create); StreamWriter sw = new StreamWriter(fs, Encoding.UTF8); int iCount = lst.Items.Count - 1; for (int i = 0; i <= iCount; i++) { sw.WriteLine(lst.Items[i].ToString()); } sw.Flush(); sw.Close(); fs.Close(); } }
希望本文所述对大家的C#程序设计有所帮助。
栏 目:.NET代码
本文地址:http://www.codeinn.net/misctech/16211.html