在 Mac OS X 中读取 Windows .CSV 文件
我需要在我的 java 应用程序中读取并显示一些 .csv 文件。 .csv 文件具有一些欧洲特殊重音字符(法语),当我在 Windows 中运行应用程序时,这些字符可以正确显示,但是当我在 Mac OS X 下运行应用程序时,特殊字符会损坏。如何在两个系统中保留并显示我的角色?
I need to read and display some .csv files in my java application. The .csv files have some european special accented characters (french) that are displayed correctly when I run my app in Windows, but, when I run the app under Mac OS X, the special characters are corrupted. How can I keep and show my characters in both systems?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以检查您是否使用不同的默认字符集吗?
这里有两个可能的指针:
Java:如何确定流的正确字符集编码
如何查找Java 中的默认字符集/编码?
Can you check if you are using different default charsets?
Here are two possible pointers:
Java : How to determine the correct charset encoding of a stream
How to Find the Default Charset/Encoding in Java?