在 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中文网其他相关文章!