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.
我收到 json,它肯定包含指向 json-hash 的键,但是当我这样做时
JSONArray jsonRecipeTypes = (JSONArray) jRoot.get("dishGroups");
jsonRecipeTypes 包含 null。有搜索限制吗?ps:我的钥匙位于 json hierachy 的第二层。
如果您的密钥位于第二级,则在搜索根目录时将找不到它。只能查询根对象的属性,即这里没有复杂的搜索功能。它更像是在可能包含其他地图的地图中查找。