这是我的 json 输出:
{"Please enter valid mobile no!!":1}
这是我的代码:
jArray = new JSONArray(results);
JSONObject json_data=null;
json_data = jArray.getJSONObject(0);
int result=json_data.getInt("1"); // get the json string name
System.out.println("message "+result);
但它给了我一个例外。
这是我的 php 代码:-
$arr = array("Please enter valid mobile no!!"=>1);
echo json_encode($arr); exit
如何检索值?