我使用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 "";
}
请参阅下面的图片。
在网页中。
在申请中
我很无能为力。请帮忙。