码迷,mamicode.com
首页 > 其他好文 > 详细

关于读取txt文件中文乱码问题

时间:2017-01-06 16:33:16      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:情况   乱码   pos   end   pen   mod   isp   ring   str   

在处理文件的过程中,读取txt文件出现中文乱码。这种情况是由于编码字符不一致导致。

public static string ReadFile(string path, string fileName)
        {
            FileStream stream = null;
            StreamReader reader = null;
            StringBuilder v = new StringBuilder();

            try
            {
                stream = new FileStream(path + fileName, FileMode.Open);
                reader = new StreamReader(stream,Encoding.GetEncoding("GB2312"));

                string line = reader.ReadLine();
                do
                {
                    v.Append(line);
                    line = reader.ReadLine();
                }
                while (!string.IsNullOrEmpty(line));
            }
            catch
            {
            }
            finally
            {
                if (stream != null)
                {
                    stream.Close();
                    stream.Dispose();
                }
                if (reader != null)
                {
                    reader.Close();
                    reader.Dispose();
                }
            }
            return v.ToString();
        }

  转换后可得正确结果

 

关于读取txt文件中文乱码问题

标签:情况   乱码   pos   end   pen   mod   isp   ring   str   

原文地址:http://www.cnblogs.com/liuxiaopi/p/6256627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!