C#如何将txt文件读取进字符串
时间: 2023-12-08 14:06:01 浏览: 74
怎样用C#读取txt文件
5星 · 资源好评率100%
您可以使用C#中的`File`和`StreamReader`类来将txt文件读取进字符串。以下是一个示例代码:
```csharp
using System;
using System.IO;
class Program {
static void Main(string[] args) {
try {
string path = @"C:\example.txt";
using (StreamReader sr = new StreamReader(path)) {
string content = sr.ReadToEnd();
Console.WriteLine(content);
}
} catch (Exception e) {
Console.WriteLine("The file could not be read:");
Console.WriteLine(e.Message);
}
}
}
```
在上面的代码中,我们首先指定了文件的路径,然后使用`StreamReader`类打开文件并将其读取到字符串中。最后,我们将字符串打印到控制台上。请注意,在代码结束时,我们使用`using`语句来释放`StreamReader`对象所占用的资源。
阅读全文