服务器返回JSON数据使用

android客户端或者jsp页面请求服务器数据,服务器先在数据库中将相应的数据取出来,放进JSONArray或者JSONObject中,并将其返回。JSONObject 对象toString()之后会自动的变成

{"key":value}这种格式,JSONArray对象toString()之后会自动的变成[{"key":value},{"key":value}]这种格式,客户端只要解析字符串就可以了,
---->在android客户端可以使用JSONArray(String source)构造JSONArray对象,
然后通过该对象的
JSONArray  getJSONArray(int index)   Get the JSONArray associated with an index.获得该对象中的JSONArray
JSONObject  getJSONObject(int index)    Get the JSONObject associated with an index.获得该对象中的JSONObject
最后是通过JSONObject的相应的方法getXxx()获得想要的数据
---->在JSP页面中可以使用js读取JSON数据(JSON语法是JS语法的子集,用JS可以非常方便的读取解析JSON)
如:

{"person1":[{"id":1,"age":50,"amount":38},{"id":4,"age":62,"amount":107}],"person2":[{"id":7,"age":50,"amount":38},{"id":5,"age":62,"amount":107}]}
将如在js中用result接收action中传来的JSON数据格式如上

result.person1[i].age 访问的是result中person1数组中的第i+1个元素的age属性值

你可能感兴趣的:(json,android,jsp,String,服务器,action)