csv特殊字符问题

发布于 2024-10-20 21:49:31 字数 125 浏览 0 评论 0原文

我有一个问题:我已读取 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

背叛残局 2024-10-27 21:49:31

您需要使用正确的编码加载文件。

默认为 UTF8,但您的文件可以是 ASCII。

将编码传递给 StreamReader 的构造函数:

StreamReader sw = new StreamReader (fileName, Encoding.ASCII);

注意

我不知道您的文件有什么编码,但我只是猜测它是 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 :

StreamReader sw = new StreamReader (fileName, Encoding.ASCII);

Note

I do not know what encoding your file has but I just guess it is ASCII.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文