resultStr = '{"Name":"MyName","age":"18"}'
JSONArray resultJsonArray =new JSONArray(resultStr);// JSONObject.getJSONArray(resultStr);
JSONObject resultJsonObject = resultJsonArray.getJSONObject(0);
String name = resultJsonObject.getString("Name");//通过name字段获取其所包含的字符串