5

首先对我缺乏技术知识和可能的误解表示歉意,我是 C# 的新手。

我接管了一个项目,该项目抓取了许多网页并将它们保存为 .png 文件。

private void CaptureWebPage(string URL, string filePath, ImageFormat format)
{
    System.Windows.Forms.WebBrowser web = new System.Windows.Forms.WebBrowser();
    web.ScrollBarsEnabled = false; 
    web.ScriptErrorsSuppressed = true; 
    web.Navigate(URL); 

    while (web.ReadyState != System.Windows.Forms.WebBrowserReadyState.Complete)
        System.Windows.Forms.Application.DoEvents();
    System.Threading.Thread.Sleep(5000);

    int width = web.Document.Body.ScrollRectangle.Width;
    width += width / 10;
    width = width <= 300 ? 600 : width; 


    int height = web.Document.Body.ScrollRectangle.Height;
    height += height / 10;

    web.Width = width;
    web.Height = height;

    _bmp = new System.Drawing.Bitmap(width, height);


    web.DrawToBitmap(_bmp, new System.Drawing.Rectangle(0, 0, width, height));
    _bmp.Save(filePath, format);

    _bmp.Dispose();

}

但是,某些页面(只有一小部分)会导致进程挂起。它不是所有的时间,但相当频繁。我发现问题似乎出在代码的以下部分:

while (web.ReadyState != System.Windows.Forms.WebBrowserReadyState.Complete)
    System.Windows.Forms.Application.DoEvents();

看起来好像 web.ReadyState 卡在“交互式”并且永远不会进入“完成”,所以它只是一直循环。

如果 web.ReadyState = 'Interactive' 在一段时间内,是否可以输入导致该页面的进程重新启动的代码,如果是这样,语法是什么?

4

2 回答 2

6

我已经用以下代码替换了现有的有问题的代码(在 thebotnet.com 上找到):

while (web.IsBusy)
    System.Windows.Forms.Application.DoEvents();
for (int i = 0; i < 500; i++)
    if (web.ReadyState != System.Windows.Forms.WebBrowserReadyState.Complete)
   {
       System.Windows.Forms.Application.DoEvents();
       System.Threading.Thread.Sleep(10); 
   }
   else
       break;
System.Windows.Forms.Application.DoEvents();

我已经测试了几次,所有页面似乎都被刮掉了。为了以防万一,我会继续测试它,但如果你有任何关于它可能导致的问题的信息,请告诉我,因为我自己可能找不到它们。

于 2013-07-02T13:19:02.950 回答
0

VB.NET 代码:

    While WebBrowser1.IsBusy
        System.Windows.Forms.Application.DoEvents()
    End While
    For i As Integer = 0 To 499
        If WebBrowser1.ReadyState <> System.Windows.Forms.WebBrowserReadyState.Complete Then
            System.Windows.Forms.Application.DoEvents()
            System.Threading.Thread.Sleep(10)
        Else
            Exit For
        End If
    Next
    System.Windows.Forms.Application.DoEvents()
于 2016-05-30T20:14:25.413 回答