JSON格式数据⽰例操作
json⽰例数据:
{
"test1": "wx9fdb8ble7ce3c68f",
"test2": "123456789",
"testData1": {
"testdatason1": "97895455"
"testdatason2":3,
"testData2": [
{
"testshuzu1":"12"
"testshuzu1":"11"
},
{
"testshuzu2":"13"
"testshuzu2":"14"
},
,
{
"testshuzu3":"15"
"testshuzu3":"16"c++string类型
}
]
}
}
操作⽰例代码如下:
JSONObject json = JSONObject.fromObject(data);//如传过来的值为string类型则转成json类型
String String("test1"));//获取key值为test1的value值,⼀下同是
String String("test2"));
JSONObject JSONObject("testData1");//获取key值为testData1的json数据(就是json数据中嵌套⼀个json数据)String String("testdatason1"));
String String("testdatason2"));
JSONArray JSONArray("testData2");//获取在testData1的json数据中testData2的json数组JSONObject JSONObject(i);//获取testData2的json数组中第i位json数据
String String("testshuzu1");
//⼀下同理通过变换getJSONObject(i)中i的值获取指定位置的json数据

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。