使用WebBrowser控件的替代方法

时间:2013-07-20 11:26:42

标签: c#

我目前正在使用linux,所以我在C#中使用WebBrowser控件时遇到问题,我在Ubuntu 12.04中运行MonoDevelop,显然WebBrowser控件使用IE,所以有我的问题,有没有办法从网站上抓取HTML使用HTTP函数然后在我想要的框中解析它?

this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill;
this.webBrowser1.Location = new System.Drawing.Point (0, 0);
this.webBrowser1.MinimumSize = new System.Drawing.Size (20, 20);
this.webBrowser1.Name = "webBrowser1";
this.webBrowser1.Size = new System.Drawing.Size (404, 178);
this.webBrowser1.TabIndex = 0;
this.webBrowser1.Url = new System.Uri ("http://url.net/a.php", System.UriKind.Absolute);

我真正需要的是Linux / Unix兼容版本:)谢谢!

1 个答案:

答案 0 :(得分:0)

不是我的,你可以阅读网址链接

 public static String readWebLink(  String url)
            {
                System.Net.WebClient client = new System.Net.WebClient();
                byte[] data = client.DownloadData(url);
                String html = System.Text.Encoding.UTF8.GetString(data);
                return html;

            }

   public static String readWebLink(  String url)
    {
     System.Net.WebClient webclient = new System.Net.WebClient();
     return  webclient.DownloadString(url);
     }

三江源