1

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 "";
    }

以下の私の画像をご覧ください。

ウェブページで。

ここに画像の説明を入力

申請中

ここに画像の説明を入力

私は無知です。助けてください。

4

0 に答える 0