标题:什么原因产生乱码!
只看楼主
guoke0531
Rank: 1
来 自:连云港
等 级:新手上路
帖 子:10
专家分:0
注 册:2010-3-30
结帖率:100%
已结贴  问题点数:10 回复次数:3 
什么原因产生乱码!
FileStream fsInfo = new FileStream("D:/hl.txt", FileMode.OpenOrCreate, FileAccess.Write);
            StreamWriter swInfo = new StreamWriter(fsInfo, Encoding.Unicode);
            swInfo.Flush();
            swInfo.BaseStream.Seek(0, SeekOrigin.Begin);
            foreach (DataGridViewRow row in this.dataGridView1.Rows)
            {
                string str = String.Empty;
                foreach (DataGridViewCell col in row.Cells)
                {
                    str += col.Value + "";
                }
                str += swInfo.NewLine;
                swInfo.Write(str);

            }

            swInfo.Close();

        }
帮忙修改一下,谢谢!!!
  

搜索更多相关主题的帖子: 乱码 
2010-06-02 13:24
saitor
Rank: 10Rank: 10Rank: 10
等 级:青峰侠
威 望:5
帖 子:373
专家分:1520
注 册:2009-5-18
得分:0 
col.Value这个是Unicode编码的?
2010-06-02 14:11
bygg
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:乖乖的心中
等 级:版主
威 望:241
帖 子:13555
专家分:3076
注 册:2006-10-23
得分:10 
Encoding.Unicode
换成UFT-8试试

飘过~~
2010-06-02 14:58
名沁
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:132
专家分:173
注 册:2009-4-5
得分:0 
具体原因记不清楚了
好像是因为vs本身的读入字符和记事本的读字符不一致造成的
2010-06-02 21:35



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-309025-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.132102 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved