我能够收到来自美味派休息服务的 json 响应。我现在遇到的问题是从 json 对象中获取单个值。这是问题所在
a={"pincode":"7593836483048364830843","id":"5","resource_uri":"\/api\/oncredit\/prepaid\/5\/","amount_charged":"200","used":false,"network_type":"AIRTEL","user":"\/api\/oncredit\/user\/1\/"}
public void getJSONValue(String a){
JSONSTRING = a;
try {
JSONObject obj = new JSONObject(JSONSTRING);
String pincode = obj.getString("pincode");
String amount_charged = obj.getString("amount_charged");
} catch (JSONException e) {
e.printStackTrace();
}
}
我现在面临的问题是在调试时,pincode 的值与使用的 resource_url 一起设置为 null。我不知道为什么它被设置为空