JSONObject中方法的区别

JSONObject 几个方法的区别

public Objectput(Object key,Object value) 将value映射到key下。如果此JSONObject对象之前存在一个value在这个key下,当前的value会替换掉之前的value
Associates the specified value with the specified key in this map(optional operation). If the map prevIoUsly contained . a mapping for this key,the old value is replaced by the specified value. (A mapmis said to contain a mapping for a keykif and only if m.containsKey(k) would returntrue.))

public JSONObjectaccumulate(String key,Object value) 累积value到这个key下。这个方法同element()方法类似,特殊的是,如果当前已经存在一个value在这个key下那么一个JSONArray将会存储在这个key下来保存所有累积的value。如果已经存在一个JSONArray,那么当前的value就会添加到这个JSONArray中
。相比之下replace方法会替代先前的value
Accumulate values under a key. It is similar to the element method except that if there is already an object stored
under the key then a JSONArray is stored under the key to hold all of the accumulated values. If there is already a
JSONArray,then the new value is appended to it. In contrast,the replace method replaces the prevIoUs value.

public JSONObjectelement(String key,Object value) 将键/值对放到这个JSONObject对象里面。如果当前value为空(null),那么如果这个key存在的话,这个key就会移除掉。如果这
个key之前有value值,那么此方法调用accumulate()方法
Put a key/value pair in the JSONObject. If the value is null,then the key will be removed from the JSONObject if it is
present. If there is a prevIoUs value assigned to the key,it will call accumulate.

转自@H_403_33@ @L_404_0@ ,保存这这里方便下次查看@H_403_33@

相关文章

  jsonp需要在页面中添加一个<script>元素,由该元素来从其他服务器加载json数据。 <body&g...
<script> var testApi = "地址"; $.ajax({ url:testApi,//可以不是本地域名 type:‘post...
总是有人会遇到跨域问题,然后有个jsonp的解决方案,MVC中代码如下: public class JsonpResult : Syst...
最近开发中遇到调用第三方web_api的功能,后端在处理json数据时使用fastjson来做反序列化,由于调用api...
JSON全称为JavaScript ObjectNotation,它是一种轻量级的数据交换格式,易于阅读、编写、解析。jsoncpp...
JsonSerializer有多个属性,用于自定义如何序列化JSON。这些也可以通过JsonSerializerSettings参数,在...