在C# 中下載HTML 原始碼
問題:
如何擷取HTML 原始碼使用特定網址C#?
解決方案:
要從網址下載 HTML 原始碼,您可以使用 System.Net 命名空間中的 WebClient 類別。
程式碼片段:
using System.Net; using (WebClient client = new WebClient()) { // Download the HTML code and save it to a local file client.DownloadFile("http://yoursite.com/page.html", @"C:\localfile.html"); // Alternatively, you can retrieve the HTML code without saving it string htmlCode = client.DownloadString("http://yoursite.com/page.html"); }
在此程式碼片段中,WebClient 繼承自IDisposable,確保系統資源在使用後妥善處置。若要下載 HTML 原始碼,請指定 Web 位址以及要儲存下載檔案的路徑。或者,您可以直接以字串形式檢索 HTML 程式碼,而不將其儲存在本機。
以上是如何在 C# 中下載 HTML 原始碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!