当使用LocalDate作为POJO的数据类型以及如何重新启动它时,为什么univocity的CsvParser抛出错误?

问题描述 投票:1回答:1

我正在使用Univocity的CSVParser来读取csv文件。我的POJO看起来像这样。

import java.time.LocalDate;
import com.univocity.parsers.annotations.NullString;
import com.univocity.parsers.annotations.Parsed;
import lombok.Builder;
import lombok.Getter;

@Getter
@Setter
public class TempClass {

    @Parsed(field = "A")
    private int a;

    @Parsed(field = "B")
    private String b;

    @Parsed(field = "C")
    private LocalDate c;
}

我的csv文件看起来像这样: -

A,B,C
1,"Hi","2019-01-12"
2,"Hey","2019-01-13"
3,"Hello","2019-01-14"

现在,当我尝试使用CsvParser读取此文件时,它会抛出错误说Unable to set value '2019-01-12' of type 'java.lang.String' to field attribute 'c'

在这里,我猜它是投掷错误,因为它不能隐含地将String转换为LocalDate。如果是这种情况那么它怎么能将String转换为int

有没有办法解决错误qazxsw poi?(没有改变qazxsw poi的数据类型)

java string csv localdate univocity
1个回答
1
投票

Univocity-parsers仍然基于Java 6. Unable to set value '2019-01-12' of type 'java.lang.String' to field attribute 'c'不是直接支持开箱即用,但可以自己提供转换。就像是:

TempClass.c

然后使用LocalDate为您的字段添加注释并提供转换类:“

public class LocalDateFormatter implements  Conversion<String, LocalDate> {

    private DateTimeFormatter formatter;

    public LocalDateFormatter(String... args) {
        String pattern = "dd MM yyyy";
        if(args.length > 0){
            pattern = args[0];
        }
        this.formatter = DateTimeFormatter.ofPattern(pattern);
    }

    @Override
    public LocalDate execute(String input) {
        return LocalDate.parse(input, formatter);
    }

    @Override
    public String revert(LocalDate input) {
        return formatter.format(input);
    }
}

下一个版本(3.0.0)即将推出,支持此功能以及更多功能。

希望这可以帮助。

© www.soinside.com 2019 - 2024. All rights reserved.