for (Object key : jsonObj.keySet()) {
result.put((String) key, jsonObj.get(key));
}
return result;
}
}
总结:net.sf.json.JSONObject这个属于json-lib这个老牌的系列,依赖的包超级多,commons的lang、logging、beanutils、collections等组件都有。
而org.json则相对来说依赖的包少一些,速度和性能方面没有怎么进行测试。