JSONObject put,accumulate,element的区别 和 例子

来源:互联网 发布:好听的网络房间名字 编辑:程序博客网 时间:2024/06/06 21:51

1.JSONObject put方法

public Object put (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 map m is said to contain a mapping for a key k if and only if m.containsKey(k) would return true .))



0 0