重音元音在C#WebClient中出现了奇怪的特征

时间:2012-12-20 07:44:39

标签: c# .net c#-4.0 httprequest webclient

我使用Webclient开发网站数据获取器应用程序。它很有效。但我

关于重音元音,面临重大问题。我的意思是当我下载字符串

包含重音的vowvels,它在应用程序中无法正确显示。

请参阅我的代码

public string DownloadByWebClient(string url)
    {
        string html = string.Empty;
        try
        {
            using (WebClient client = new WebClient())
            {
                try
                {
                    client.Headers.Add("User-Agent", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)");
                    html = client.DownloadString(url);
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message);
                    return "";
                }
                finally
                {
                    client.Dispose();
                }
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
            return "";
        }
        return "";
    }

请参阅下面的图片。

在网页中。

enter image description here

在申请中

enter image description here

我很无能为力。请帮忙。

0 个答案:

没有答案