背景
使用 SimpleFlatMapper sfm-csv 6.0.3
示例 CSV:
|------|-------------|----------------|----------------|------------------|
| name | reference # | pf.first thing | pf.secondThing | pf.another.thing |
|======|=============|================|================|==================|
| foo | eb2e23c0d6a | a value here | | another value |
|------|-------------|----------------|----------------|------------------|
| bar | 0a4bba4c1d0 | values | all | throughout |
|------|-------------|----------------|----------------|------------------|
波乔
class Item {
private String name;
private String reference;
private Map<String, String> prefixedFields;
// ... builder, getters, etc.
}
简化代码
final CsvMapper<Item> mapper = CsvMapperFactory.newInstance()
.addAlias("name", "itemName")
.addAlias("reference #", "reference")
.newMapper(Item.class);
return CsvParser.mapWith(mapper)
.stream(file, items -> items.collect(List.collector()));
问题
照原样,Map
正在回来null
。我试图达到一个点:
firstRowItem.getPrefixedFields() == ImmutableMap.of(
"first thing", "a value here",
"another.thing", "another value")
secondRowItem.getPrefixedFields() == ImmutableMap.of(
"first thing", "values",
"secondThing", "all",
"another.thing", "throughout")
“pf”。前缀是一成不变的,如果属性命名为“pf”,一切正常:
class Item {
// ...
private Map<String, String> pf;
// ...
}
但我希望将该属性命名为“prefixedFields”而不是“pf”。
尝试解决
- 有关属性映射的SimpleFlatMapper 文档显示了如何匹配“pf”。前缀,但不包括别名 a
Map
:
.addColumnProperty(
col -> col.getName().startsWith("pf."),
MapTypeProperty.KEY_VALUE)
.addAlias
只接受String
参数,所以这样的东西不起作用:
.addAlias("pf.", "prefixedFields")