csv特殊字符问题
我有一个问题:我已读取 csv 文件并将内容存储到数据表中,一切正常。但是,当我在 datagridview 中显示数据表的内容时,当我有符号“€”或“is,and ...”时,我只看到一个内部带有问号的菱形。我该如何解决这个问题?谢谢
I have a problem: I have read a csv file and store the contents into a datatable, and everything is ok. But when I show the contents of the datatable in a datagridview, when I have the symbols "€" or "is, and ..." I only see a diamond with a question mark inside. How can I fix this? thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用正确的编码加载文件。
默认为 UTF8,但您的文件可以是 ASCII。
将编码传递给
StreamReader
的构造函数:注意
我不知道您的文件有什么编码,但我只是猜测它是 ASCII。
You need to load the file with correct encoding.
Default is UTF8 but your file could be ASCII.
pass the encoding to the constructor of
StreamReader
:Note
I do not know what encoding your file has but I just guess it is ASCII.