解析
try { JSonArray jr = new JSonArray("Your json string"); JSonObject jb = (JSONObject)jr.getJSonObject(0); JSonArray st = jb.getJSonArray("streets"); for(int i=0;i<st.length();i++) { String street = st.getString(i); Log.i("..........",""+street); // loop and add it to array or arraylist }}catch(Exception e){ e.printStackTrace();}一旦解析并将其添加到数组。使用相同的控件来填充微调框。
[表示json数组节点
{ 表示json对象节点


