我有一个avro架构,我想从中提取所有字段名称。有没有办法做到这一点?
测试模式就是这样:
{
"type": "record",
"name": "wpmcn.MyPair",
"doc": "A pair of strings",
"fields": [
{"name": "left", "type": "string"},
{"name": "right", "type": "string"}
]
}
以下是代码:
public static void main(String[] args) throws IOException {
Schema schema =
new Schema.Parser().parse(AvroTest.class.getClassLoader().getResourceAsStream("pair.avsc"));
System.out.println(schema.getFields());
}
上面打印出来的那样:
[left type:STRING pos:0, right type:STRING pos:1]
但是我希望它能够回归"离开"和"对"在数组列表中没有别的。现在它返回类型和pos也是我不需要的。有没有办法解决这个问题?
答案 0 :(得分:3)
您可以使用field.name()
执行此操作,如下所示:
public static void main(String[] args) throws IOException {
Schema schema =
new Schema.Parser().parse(AvroTest.class.getClassLoader().
getResourceAsStream("pair.avsc"));
//Collect all field values to an array list
List<String> fieldValues = new ArrayList<>();
for(Field field : schema.getFields()) {
fieldValues.add(field.name());
}
//Iterate the arraylist
for(String value: fieldValues) {
System.out.println(value);
}
}
答案 1 :(得分:0)
Schema.getClassSchema().getFields()
答案 2 :(得分:0)
>= Java 8
schema.getFields().forEach(System.out::println)// print
schema.getFields().stream().map(Schema.Field::name) // collect