我正在使用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的数据类型)
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)即将推出,支持此功能以及更多功能。
希望这可以帮助。