html文件档,文件操作HTML文档

该代码段展示了如何批量处理HTML文件,查找并替换指定字符串。程序首先检查输入的HTML文件路径,然后遍历该目录下所有.htm文件,用指定的新字符串替换找到的旧字符串,并将修改后的文件保存到用户选择的路径。
摘要由CSDN通过智能技术生成

没有  更改成功

try

{

int totalFile = 0;

if (this.txtHTML.Text.Trim() == "")

{

MessageBox.Show("请输入HTML文件路径!");

}

else

{

string dirPath = this.txtHTML.Text.Trim();

if (!dirPath.Substring(dirPath.Length - 1).Contains("\\"))

{

dirPath = dirPath + "\\";

}

DirectoryInfo dirInfo = new DirectoryInfo(dirPath);

FileInfo[] files = dirInfo.GetFiles(); ;

int i = 0;

foreach (FileInfo fileinfo in files)

{

if (fileinfo.Extension.Equals(".htm"))//遍历所有htm文件

{

totalFile = totalFile + 1;

WebRequest myWebRequest = WebRequest.Create(dirPath + fileinfo.Name);

WebResponse myWebResponse = myWebRequest.GetResponse();

Stream myStream = myWebResponse.GetResponseStream();

Encoding encode = System.Text.Encoding.GetEncoding("gb2312");

StreamReader myStreamReader = new StreamReader(myStream, encode);

string strhtml = myStreamReader.ReadToEnd();//获取HTML文档里面的值

//int num = strhtml.IndexOf("心包炎");

string str = string.Format("{0}", "心包炎");

string strNew = strhtml.Replace("心包炎",str);//html文档值里面有 心包炎 的替换成 str

myWebResponse.Close();

string stroutput = strhtml;

SaveFileDialog sfd = new SaveFileDialog();

sfd.Title = "保存";

sfd.Filter = "htm file(*.htm)|*.htm";

sfd.ShowDialog();

string path = sfd.FileName;

FileInfo file = new FileInfo(path);

if (file.Exists)

{

file.Delete();

}

FileStream fs = new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write);

StreamWriter sw = new StreamWriter(fs, Encoding.UTF8);

sw.Write(strNew);

sw.Flush();

sw.Close();

fs.Close();

}

}

}

}

catch (Exception ee) { MessageBox.Show("操作失败:" + ee.Message); }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值