win19000

导航

C#读取txt文件时中文乱码

解决办法

使用GB2312中文字符集

StreamReader reader = new StreamReader(txtUrl, Encoding.GetEncoding(“gb2312”));

或使用utf-8中文字符集

StreamReader reader = new StreamReader(txtUrl, Encoding.GetEncoding(“utf-8”));

或使用默认编码格式

StreamReader sR = new StreamReader(filePath, System.Text.Encoding.Default)
---------------------
作者:IT翅哥
来源:CSDN
原文:https://blog.csdn.net/qq_35902836/article/details/79443249
版权声明:本文为博主原创文章,转载请附上博文链接!

posted on 2019-06-14 14:44  win19000  阅读(596)  评论(0)    收藏  举报