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