CSV 和 MS-DOS CSV 格式
我有一个自定义 java 程序,它生成一个逗号分隔值 (CSV) 文件。它使用以下输出格式:
a、b、c
我的用户抱怨我的 CSV 文件不是“MS-DOS CSV”格式。他们向我提供了一个“MS-DOS CSV”格式的文件。我对我的 CSV 文件与他们的“MS-DOS CSV”文件进行了比较。这两个文件是相同的。
“MS-DOS CSV”格式和标准 CSV 格式有什么区别?有没有关于如何用java制作“MS-DOS CSV”格式的教程?
I have a custom java program which produces a Comma Separated Values (CSV) file. It uses the following output format:
a,b,c
My users complain that my CSV file is not in the "MS-DOS CSV" format. They provided me with a file in the "MS-DOS CSV" format. I ran diff on my CSV file against their "MS-DOS CSV" file. The two files are identical.
What is the difference between the "MS-DOS CSV" format and the standard CSV format? Is there a tutorial somewhere about how to make the "MS-DOS CSV" format with java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查行分隔符。 MS-DOS 使用 {CR}{LF} 或 \r\n。
Check the row delimiter. MS-DOS uses {CR}{LF} or \r\n.