用C#程序一次性将文件内容读入到字符串
使用ReadToEnd()方法读取字符串中的文件内容。
在StreamReader中进行设置并读取文件−
using (StreamReader sr = new StreamReader("new.txt")){ string res = sr.ReadToEnd(); Console.WriteLine(res); }
以下是完整代码−
示例
using System.IO; using System; public class Demo { public static void Main() { using (StreamWriter sw = new StreamWriter("new.txt")) { sw.WriteLine("One"); sw.WriteLine("Two"); } using (StreamReader sr = new StreamReader("new.txt")) { string res = sr.ReadToEnd(); Console.WriteLine(res); } } }
它创建了文件“new.text”并向其中添加了文本。之后,使用StreamReader类和ReadToEnd()方法,它读取文件的内容并将其放入字符串中−
输出
以下为输出。
One Two
广告