用Java解析csv文件
可能的重复:
在java中解析CSV
如何在java中正确解析csv文件?在某些情况下,简单的 StringTokenizer 不起作用,如下例所示:
xxx,"hello, this breaks you"
Possible Duplicate:
Parsing CSV in java
How to do I parse a csv file correctly in java? There are cases where simple StringTokenizer doesn't work as in the example below:
xxx,"hello, this breaks you"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
尝试使用专用库,例如:
Try using a dedicated library for that, e.g.:
JSaPar 是另一个可以为您完成这项工作的库。您可以在此处找到其他替代库的完整列表。
JSaPar is another library that will do the work for you. You can find a comprehensive list of other alternative libraries here.
ostermiller.org 有一个 jar 带有不错的实用程序类,例如 CSV-Parser/Writer 等。
ostermiller.org has a jar with nice utility-classes like CSV-Parser/Writer etc.
Java 数据文件读/写实用程序 是一个非常直接且易于使用的库,用于读/写 CSV 文件。
Java Data File Read/Write Utility is a very straight forward and easy to use library for reading/writing CSV files.
BeanIO 可用于将 CSV 记录绑定到 Java bean 对象。请访问 http://beanio.org 了解详细信息。
BeanIO can be used to bind CSV records to Java bean objects. Visit http://beanio.org for details.