Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我解析了大约 300kb(它可能会增长)的 json 文件,所以我没有使用默认的 Android 的 JSON 解析器,而是使用了 Jackson。但是,我必须根据字段的值(来自 JSON 的对象)过滤它的响应。例子:
json文件:
{"foobars":[{"foo":1,"bar":1},{"foo":2,"bar":2}]}
并且响应将是带有这两个对象的 ArrayList(在我的情况下)。但是,我只想在“foo”< 2 时获取对象。如何做到这一点?