標籤: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 解決方案