UWP&WP8.1 中文網頁字元亂碼 字元亂碼 UTF-8轉GBK 解決方案

來源:互聯網
上載者:User

標籤:color   網頁   讀取   ram   字元   class   register   style   async   

UWP 方法

  async void Download()        {            /*建立HttpClient*/            HttpClient web_ = new HttpClient();            /*使用HttpClient的GetAsync方法下載*/            var res = await web_.GetAsync(new Uri("http://dzs.qisuu.com/txt/%E6%AD%A6%E9%81%93%E7%B3%BB%E7%BB%9F%E4%B9%8B%E8%8D%89%E6%B0%91%E5%B4%9B%E8%B5%B7.txt"));            /*註冊傳統型程式可使用的字元編碼*/            Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);            /*註冊GBK*/            Encoding encodingGbk = Encoding.GetEncoding("GBK");            /*轉換編碼*/            Stream StreamToReader = await res.Content.ReadAsStreamAsync();             /*使用StreamReader的新執行個體:stream流,字元編碼 */               StreamReader sr = new StreamReader(StreamToReader,encodingGbk);            /*非同步讀取全部字元*/            string Text = await sr.ReadToEndAsync();                /*賦值到TextBox控制項*/                 T.Text += Text;        }

WP8.1 方法:

 HttpClient web_ = new HttpClient();            var res = await web_.GetAsync(new Uri("http://dzs.qisuu.com/txt/%E6%AD%A6%E9%81%93%E7%B3%BB%E7%BB%9F%E4%B9%8B%E8%8D%89%E6%B0%91%E5%B4%9B%E8%B5%B7.txt"));                       /*轉換字元*/            var Text = await res.Content.ReadAsStringAsync();            box.Text = Text;

上面是解決方案。不論你用什麼方法讀取字元,或者網頁。在UWP在中一定要轉換成stream,並且註冊GBK,在通過SteramReader讀取。WP8.1中就相對簡單了,兩種方法(UWP和WP8.1)都可以使用的。

UWP&WP8.1 中文網頁字元亂碼 字元亂碼 UTF-8轉GBK 解決方案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.