gpt4 book ai didi

c# - 如何在 C# 中下载 HTML 源代码

转载 作者:IT王子 更新时间:2023-10-29 03:35:47 25 4
gpt4 key购买 nike

如何在 C# 中获取给定网址的 HTML 源代码?

最佳答案

您可以使用 WebClient class 下载文件:

using System.Net;

using (WebClient client = new WebClient ()) // WebClient class inherits IDisposable
{
client.DownloadFile("http://yoursite.com/page.html", @"C:\localfile.html");

// Or you can get the file content without saving it
string htmlCode = client.DownloadString("http://yoursite.com/page.html");
}

关于c# - 如何在 C# 中下载 HTML 源代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/599275/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com