C#怎么用webview2获取网页内容

c#
1620
2024/2/10 17:32:29
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

要使用WebView2获取网页内容,首先需要在你的C#项目中添加WebView2控件。接下来,你可以编写代码来加载网页并获取其内容。以下是一个简单的示例代码:

using Microsoft.Web.WebView2.Core;
using System;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WebView2Demo
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            webView1.NavigationCompleted += WebView1_NavigationCompleted;
        }

        private async void Form1_Load(object sender, EventArgs e)
        {
            await webView1.EnsureCoreWebView2Async();
            webView1.Source = new Uri("https://www.example.com");
        }

        private async void WebView1_NavigationCompleted(object sender, CoreWebView2NavigationCompletedEventArgs e)
        {
            string htmlContent = await webView1.CoreWebView2.ExecuteScriptAsync("document.documentElement.outerHTML");
            Console.WriteLine(htmlContent);
        }
    }
}

在上面的示例中,我们创建了一个Windows窗体应用,并在窗体加载时初始化WebView2控件并加载指定的网页。在WebView1_NavigationCompleted事件中,我们使用ExecuteScriptAsync方法来执行JavaScript代码,获取网页的HTML内容并将其输出到控制台。你可以根据需要对获取的网页内容进行进一步操作。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: c#数组长度获取的方法是什么