我正在从 A WebPage 开发图像提取软件。创建了一个函数
public static void GetAllImages()
{
WebClient x = new WebClient();
string source = x.DownloadString(@"http://www.bbc.com");
var document = new HtmlWeb().Load(source);
var urls = document.DocumentNode.Descendants("img")
.Select(e => e.GetAttributeValue("src", null))
.Where(s => !String.IsNullOrEmpty(s));
document.Load(source);
}
它说“Uri 太长” ..
我尝试使用 Uri.EscapeDataString .. 但不知道把它放在哪里
任何帮助,将不胜感激