gpt4 book ai didi

C# System.NullReferenceException NSoup 代码

转载 作者:行者123 更新时间:2023-11-30 18:18:42 25 4
gpt4 key购买 nike

for (int x = 0; x < 50; x++)
{
NSoupClient.Connect("https://steamcommunity.com/gid/" + x)
.UserAgent("Firefox")
.Timeout(10000)
.Get();
}

这段代码会抛出这个错误(并且它总是在 int 为 5 时停止):

An unhandled exception of type 'System.NullReferenceException' occurred in NSoup.dll

enter image description here

最佳答案

我使用 WebClient 下载页面修复了这个问题。

using (WebClient wc = new WebClient())
{
wc.Headers.Add("user-agent", "Mozilla/5.0 (Windows; Windows NT 5.1; rv:1.9.2.4) Gecko/20100611 Firefox/3.6.4");
string html = wc.DownloadString(url);
Document document = NSoupClient.Parse(html);
}

关于C# System.NullReferenceException NSoup 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40713956/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com