我正在将我的JSON库从org.json更改为Jackson,并且我想迁移以下代码:JSONObjectdatasets=readJSON(newURL(DATASETS));JSONArraydatasetArray=datasets.getJSONArray("datasets");现在在jackson我有以下几点:ObjectMapperm=newObjectMapper();JsonNodedatasets=m.readTree(newURL(DATASETS));ArrayNodedatasetArray=(ArrayNode)datasets.get("datasets")