标签:
String str=response.toString();
JSONObject obje;
try {
obje = new JSONObject(str);
JSONArray objec=new JSONArray(obje.getString("obj"));
int i=objec.length();
for(int t=0;t<i;t++){
JSONObject jsonObject=objec.getJSONObject(t);
String DFRQ=jsonObject.optString("DFRQ",""); }}
标签:
原文地址:http://www.cnblogs.com/chhom/p/4726428.html