C#WebClient.DownloadString访问URL的美国站点

时间:2015-06-15 10:38:11

标签: c# html webclient

我将URL传递到WebClient.DownloadString(“http://someurl.com”)以下载页面的HTML但它总是下载我国家的页面版本(即http://someurl.com/en-cn)我需要下载美国网址。

这是我的函数,我打电话来下载html:

public static String GetHtmlStringWC(string url)
    {
        string htmlString = string.Empty;

        try
        {
            using (WebClient webClient = new WebClient())
            {
                try
                {
                    webClient.Headers["User-Agent"] = "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.15) Gecko/20110303 Firefox/3.6.15";
                    WebProxy myProxy = new WebProxy();
                    myProxy.IsBypassed(new Uri(url));
                    webClient.Proxy = myProxy;
                    htmlString = webClient.DownloadString(url);
                }
                catch (Exception ex)
                {
                    throw;
                }
                finally
                {
                    webClient.Dispose();
                }
            }
        }
        catch (WebException wex)
        {
            throw;
        }
        catch (Exception ex)
        {
            throw;
        }
        finally { }

        return htmlString.Replace("\r", string.Empty).Replace("\n", string.Empty).Replace("\t", string.Empty); 
    }

我错过了一个参数吗?我需要传递什么才能让它始终下载美国版本的页面?

1 个答案:

答案 0 :(得分:2)

如果服务器使用本地化版本的页面进行响应,则选项为:

  1. 尝试在网址中加入您想要的版本,例如http://someurl.com/en-us
  2. 访问网站,查看是否有设置语言的选项,如果是,请尝试在您的程序中执行此操作

  3. 尝试使用代理,VPN,Tor等。