码迷,mamicode.com
首页 > 其他好文 > 详细

使用System.IO来读取以及修改文本文件

时间:2015-11-16 12:04:42      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
 1 //读取html内容
 2 string htmlUrl = @"new\new.html";
 3 string htmlContent = string.Empty;
 4 using (StreamReader reader = new StreamReader(htmlUrl))
 5 {
 6        htmlContent += reader.ReadToEnd();
 7 }
 8 
 9 //修改html内容
10 string htmlContentNew = "新的html内容"; 
11 using (StreamWriter sw = new StreamWriter(url, false))
12 {
13        sw.Write(htmlContentNew );
14 }
View Code

 

使用System.IO来读取以及修改文本文件

标签:

原文地址:http://www.cnblogs.com/zhyue93/p/System_IO.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!