HtmlDocument.LoadHtml from WebResponse?

本文关键字:WebResponse from LoadHtml HtmlDocument | 更新日期: 2023-09-27 18:05:12

我尝试从发布的链接中提取图像,我做的第一个检查是看看链接是否指向像这样的普通图像:

    HttpWebRequest request;
    WebResponse webresponse;
    request = (HttpWebRequest)HttpWebRequest.Create(url);
     webresponse = request.GetResponse();
     if (webresponse.ContentType.StartsWith("image/"))
       ...

如果没有找到,我想继续使用HTML敏捷包,但为了能够做到这一点,我需要运行:

HtmlDocument doc;
reader = new StreamReader(webresponse.GetResponseStream());
doc.LoadHtml(reader.ReadToEnd());

问题是,LoadHtml不会找到任何来源,即使我确定有HTML代码在响应。我怀疑形成的HTML格式是否不正确?

下面是ReadToEnd将生成的部分内容:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="sv" lang="sv">
    <head><title>
        X - Eclipse - 2011
    </title>
        <!--[if lt IE 7]>
        <script defer type="text/javascript" src="../javascript/pngfix.js"></script>
        <![endif]-->
        <!--<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />-->
        <meta http-equiv="Content-type" content="text/html; charset=iso-8859-1" /><link href="../../../App_Themes/X/mainStyleSheet.css" type="text/css" rel="stylesheet" /><meta name="author" content="" /><meta name="copyright" content="X.net" /><meta name="description" content="Välkommen in till ett av Sveriges största Xcommunity." /><meta name="keywords" content="X, rollspel, boardgamegeek, boardgame, X.net, X.net, community, Jimmy, Nilsson, schack, risk, puerto rico" /><script language="javascript" type="text/javascript" src="/sites/X/javascript/common.js"></script><script language="javascript" type="text/javascript" src="/sites/X/javascript/ajaxHandler.js"></script><script language="javascript" type="text/javascript" src="/javascript/jquery.js"></script><link rel="shortcut icon" href="/App_Themes/X/Images/common/browserIcon/favicon.ico" /><link rel="icon" href="/App_Themes/X/Images/common/browserIcon/animated_favicon1.gif" type="image/gif" /></head>
    <body>
        <div id="topBack">
        <div id="siteContainer">
        <form method="post" action="game.aspx?gameId=72125" id="aspnetForm" enctype="multipart/form-data">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDw....

我可以看到字符串包含一些换行符('r'n)命令,如果这很重要?

我的目标很简单,避免下载网页不止一次,否则我可以使用WebClient.DownloadString(url);以我知道的格式下载它。

HtmlDocument.LoadHtml from WebResponse?

成功了:

request = (HttpWebRequest)HttpWebRequest.Create(url);
webresponse = (HttpWebResponse)request.GetResponse();
if (webresponse.ContentType.StartsWith("image/"))
{...}
if (webresponse.ContentType.StartsWith("text/html"))
{
     var resultStream = webresponse.GetResponseStream();
     doc.Load(resultStream);
}