winform读取txt
时间: 2023-09-16 12:06:32 浏览: 89
C#winform读写txt文件
4星 · 用户满意度95%
在 WinForms 中读取文本文件可以使用 System.IO 命名空间中的 StreamReader 类。下面是一个简单的示例代码,可以读取文本文件并将其显示在 TextBox 控件中:
```csharp
private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog openFileDialog1 = new OpenFileDialog();
openFileDialog1.Filter = "文本文件 (*.txt)|*.txt";
openFileDialog1.Title = "选择要打开的文本文件";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
StreamReader sr = new StreamReader(openFileDialog1.FileName, Encoding.Default);
textBox1.Text = sr.ReadToEnd();
sr.Close();
}
}
```
在上面的代码中,首先使用 OpenFileDialog 对话框选择要打开的文本文件,然后使用 StreamReader 类读取文本文件内容,并将其显示在 TextBox 控件中。
需要注意的是,StreamReader 构造函数中的第二个参数可以指定文本文件的编码格式,如果不指定,则默认使用系统当前的 ANSI 编码格式。在中文系统中,建议使用 Encoding.Default 指定文本文件的编码格式,以避免中文乱码的问题。
阅读全文