avpath 可以像 xpath/jspath 那样去选择、更新、插入、删除 Avro 形式的数据。它可以作为 Java/Scala 的 API 库,或者用作 Avro 记录数据服务。它的表达和 jspath 很相似。
示例代码:
// find first book title avpath.select(doc, ".books[0].title") // ['Clean Code'] // find first title of books avpath.select(doc, ".books.title[0]") // 'Clean Code' // find last book title avpath.select(doc, ".books[-1].title") // ['JavaScript: The Good Parts'] // find two first book titles avpath.select(doc, ".books[:2].title") // ['Clean Code', 'Maintainable JavaScript'] // find two last book titles avpath.select(doc, ".books[-2:].title") // ['Agile Software Development', 'JavaScript: The Good Parts'] // find two book titles from second position avpath.select(doc, ".books[1:3].title") // ['Maintainable JavaScript', 'Agile Software Development']