首页 > 代码库 > C#读写txt文件
C#读写txt文件
最简单的读写txt文件方式
引用:
using System.IO;
using System.Text;
代码:
class Program { static void Main(string[] args) { string path ="test.txt"; Write(path); Console.WriteLine(Read(path)); Console.ReadKey(); } public static void Write(string path) { using (FileStream fs = new FileStream(path, FileMode.Append)) { StreamWriter sw = new StreamWriter(fs); sw.WriteLine("Hello World!!!!"); sw.WriteLine("Hello World!!!!"); sw.Flush(); Console.WriteLine("写入成功!"); } } public static string Read(string path) { StreamReader sr = new StreamReader(path, Encoding.Default); return sr.ReadToEnd(); } }
本程序为控制台程序,创建的test.txt文件在“\bin\Debug”目录下。
C#读写txt文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。