C#代码 根据网址保存为.mnht文件
时间: 2023-09-21 14:12:20 浏览: 71
以下是使用C#代码根据网址保存为.mnht文件的示例:
```csharp
using System;
using System.IO;
using System.Net;
class Program
{
static void Main(string[] args)
{
string url = "https://www.example.com"; // 替换为你需要保存的网址
string filename = "example.mnht"; // 替换为你需要保存的文件名
WebClient client = new WebClient();
string html = client.DownloadString(url);
using (StreamWriter writer = new StreamWriter(filename))
{
writer.Write(html);
}
Console.WriteLine("网页已保存为:" + filename);
}
}
```
此代码使用 `WebClient` 类下载指定网址的 HTML 内容,并使用 `StreamWriter` 类将其保存为指定文件名的 .mnht 文件。你可以根据需求更改文件名和网址。
阅读全文