我必须使用Jackson从URL读取json时提高性能。 解决方案是忽略一些不需要治疗的节点,我不知道怎么做?
更具体一点这个方法在AVG上需要1.4秒,因为它探索了所有节点,有时只需要一个节点(url示例中的类型)。
public static JsonNode readFromURL() throws JsonParseException, JsonMappingException, MalformedURLException, IOException
{
return mapper.readValue(new URL("http://api.mixotv.com/2/guide/now"), JsonNode.class);
}
感谢。