CSV 和 MS-DOS CSV 格式

发布于 2024-09-30 07:48:35 字数 281 浏览 0 评论 0原文

我有一个自定义 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 技术交流群。

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

发布评论

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

评论(1

挖鼻大婶 2024-10-07 07:48:35

检查行分隔符。 MS-DOS 使用 {CR}{LF} 或 \r\n。

Check the row delimiter. MS-DOS uses {CR}{LF} or \r\n.

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