Webclient を使用して Web サイト データ フェッチャー アプリケーションを開発しています。それは自由に動作します。しかし、私
アクセントのある母音について、大きな問題に直面しています。つまり、文字列をダウンロードするとき
アプリケーションで正しく表示されないアクセント付きの母音が含まれています。
私のコードを見てください
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 "";
}
以下の私の画像をご覧ください。
ウェブページで。
申請中
私は無知です。助けてください。