首页 >后端开发 >C++ >如何使用 C# 从网址检索 HTML 源代码?

如何使用 C# 从网址检索 HTML 源代码?

Linda Hamilton
Linda Hamilton原创
2025-01-05 05:59:43486浏览

How Can I Retrieve HTML Source Code from a Web Address Using C#?

在 C# 中获取 HTML 源代码

给定一个网址,如何在 C# 中检索其 HTML 源代码?

回答

获取C# 网页的 HTML 源代码,使用 WebClient 类。它使您能够下载文件并以字符串形式检索内容,而无需将它们保存到本地系统。

以下是演示该过程的示例:

using System.Net;

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

    // Alternatively, to get the file content without saving:
    string htmlCode = client.DownloadString("http://yoursite.com/page.html");
}

以上是如何使用 C# 从网址检索 HTML 源代码?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn