java.io.IOException:CSV 行末尾未终止的引用字段

发布于 2024-10-17 02:39:14 字数 679 浏览 2 评论 0原文

我有一个 CSV 文件(用德语编写),我正在我的代码中解析它。

CSVParser newLineParser = new CSVParser('\n');

        try {

            String[] points = newLineParser.parseLine(csv);
            CSVParser commaParser = new CSVParser();
            int pointsLength = points.length;

            for (int i = 1; i < pointsLength; i++) {

                String[] pointComponents = commaParser.parseLine(points[i]);
            }

        } 
        catch (Exception e) {
            Log.e("Exception", e.getMessage());
        }

我在 parseLine 方法中收到错误:

java.io.IOException: Un-terminated quoted field at end of CSV line

此错误的原因可能是什么?

I have a CSV file(written in german language) and I m parsing it in my code.

CSVParser newLineParser = new CSVParser('\n');

        try {

            String[] points = newLineParser.parseLine(csv);
            CSVParser commaParser = new CSVParser();
            int pointsLength = points.length;

            for (int i = 1; i < pointsLength; i++) {

                String[] pointComponents = commaParser.parseLine(points[i]);
            }

        } 
        catch (Exception e) {
            Log.e("Exception", e.getMessage());
        }

I am getting error in the parseLine method as:

java.io.IOException: Un-terminated quoted field at end of CSV line

what may be the reason for this error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

关于从前 2024-10-24 02:39:14

我从中得到的是,在您的 CSV 文件中,报价已打开但未关闭。

What I get from this is that in your CSV file a quote is opened but isn't closed.

手心的温暖 2024-10-24 02:39:14

如果您使用的是 OpenCSV API,那么这可能是问题所在:

问题:csv 文件中的一个或多个值有多行。

修复:改用 commaParser.parseLineMulti(points[i]) 。

Source: Http://opencsv.sourceforge.net/apidocs/com/opencsv/CSVParser.html#parseLineMulti(java.lang.String)

If you are using OpenCSV API then this could be the problem:

Issue: One or more value in the csv file have multiple lines.

Fix: Use commaParser.parseLineMulti(points[i]) instead.

Source: Http://opencsv.sourceforge.net/apidocs/com/opencsv/CSVParser.html#parseLineMulti(java.lang.String)
一人独醉 2024-10-24 02:39:14

格式错误的 csv 文件

在循环中执行一些打印输出,以查看程序崩溃之前会发生什么。

malformed csv file

do some printouts in your loop, to see what happens before the program blows up.

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