C#读写文本文件小结
C#读写文本文件小结
除了创建、复制、移动和删除外,对文本文件最常用的操作就是进行读写,C#提供了非常多的方法来对文本文件进行读写,今天我们做个小结:
一、写入文件
1.File类的静态方法WriteAllText(改写方式)
File.WriteAllText(Server.MapPath("a.txt"), "http://www.mzwu.com/\r\nhttp://www.hao123.com/\r\nhttp://www.163.com/");
2.File类的静态方法WriteAllLines(改写方式)
File.WriteAllLines(Server.MapPath("a.txt"), new string[] {
"http://www.mzwu.com/",
"http://www.hao123.com/",
"http://www.163.com/" });
3.File类的静态方法AppendAllText(追加方式)
File.AppendAllText(Server.MapPath("a.txt"), "http://www.mzwu.com/\r\nhttp://www.hao123.com/\r\n");
File.AppendAllText(Server.MapPath("a.txt"), "http://www.163.com/");
4.StreamWriter对象的Write方法和WriteLine方法(true追加,false改写)
StreamWriter sw = new StreamWriter(Server.MapPath("a.txt"),
false);
sw.Write("http://www.mzwu.com/\r\n");
sw.WriteLine("http://www.mzwu.com/");
sw.WriteLine("http://www.163.com/");
sw.Close();
说明:当文件不存在时,以上方法都将创建一个新文件!
二、读取文件
1.File类的静态方法ReadAllText
File.ReadAllText(Server.MapPath("a.txt"))
2.File类的静态方法ReadAllLines
string[] content =
File.ReadAllLines(Server.MapPath("a.txt"));
for (int i = 0; i < content.Length; i++)
{
}
3.StreamReader对象的ReadToEnd方法
StreamReader sr = new StreamReader(Server.MapPath("a.txt"));
Response.Write(sr.ReadToEnd());
sr.Close();
4.StreamReader对象的ReadLine方法
StreamReader sr = new StreamReader(Server.MapPath("a.txt"));
while (!sr.EndOfStream)
{
}
sr.Close();
原始文本如下:
C#读写文本文件小结除了创建、复制、移动和删除外,对文本文件最常用的操作就是进行读写,C#提供了非常多的方法来对文本文件进行读写,今天我们做个小结:一、写入文件
1.File类的静态方法WriteAllText(改写方式) 程序代码
File.WriteAllText(Server.MapPath("a.txt"),
"http://www.mzwu.com/\r\nhttp://www.hao123.com/\r\nhttp://www.163.com/");
2.File类的静态方法WriteAllLines(改写方式) 程序代码
File.WriteAllLines(Server.MapPath("a.txt"), new string[] {
"http://www.mzwu.com/", "http://www.hao123.com/",
"http://www.163.com/" }); 3.File类的静态方法AppendAllText(追加方式) 程序代码
File.AppendAllText(Server.MapPath("a.txt"),
"http://www.mzwu.com/\r\nhttp://www.hao123.com/\r\n");
File.AppendAllText(Server.MapPath("a.txt"), "http://www.163.com/");
4.StreamWriter对象的Write方法和WriteLine方法(true追加,false改写) 程序代码
StreamWriter sw = new StreamWriter(Server.MapPath("a.txt"), false);
sw.Write("http://www.mzwu.com/\r\n");
sw.WriteLine("http://www.mzwu.com/");
sw.WriteLine("http://www.163.com/"); sw.Close();
说明:当文件不存在时,以上方法都将创建一个新文件! 二、读取文件 1.File类的静态方法ReadAllText 程序代码
File.ReadAllText(Server.MapPath("a.txt")) 2.File类的静态方法ReadAllLines
程序代码 string[] content = File.ReadAllLines(Server.MapPath("a.txt"));
for (int i = 0; i < content.Length; i++) {
Response.Write(content[i] + "
"); } 3.StreamReader对象的ReadToEnd方法 程序代码 StreamReader sr = new
StreamReader(Server.MapPath("a.txt"));
Response.Write(sr.ReadToEnd()); sr.Close();
4.StreamReader对象的ReadLine方法 程序代码 StreamReader sr = new
StreamReader(Server.MapPath("a.txt")); while (!sr.EndOfStream) {
Response.Write(sr.ReadLine() + "
"); } sr.Close();
元·刘因《村居杂诗》
芳芬皆可籍,缓步即吾车[jū];
乘兴三杯酒,随行一策书[xū]。
——智慧人生,始自田园美景。 (一策书(湘岳阳万江波))。
蒲公《咏史》
良马非不骏,盐坂徒悲鸣。
美玉非不贵,抱璞为世轻。
高士卧隆中,畴乃知其名?
从容起南阳,谈笑魏吴惊。
男儿事蚕桑,后世有何称?
——智慧世界,源自码农寒士。(一策书(湘岳阳万江波))。