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

前端之家收集整理的这篇文章主要介绍了JSONObject put,accumulate,element的区别 和 例子前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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 .))

原文链接:https://www.f2er.com/json/290102.html

猜你在找的Json相关文章