我在 asp.net 中编写了一个 Web 服务,并使用JSON webservice在我的 android 应用程序中调用它。这是我从 android 调用 web 服务的代码
httpPost request = new HttpPost(url);
request.setHeader("Content-Type","application/json");
request.setEntity(new ByteArrayEntity(json.toString().getBytes("UTF8")));
HttpResponse response = client.execute(request);
String jsonResponse = EntityUtils.toString(response.getEntity());
JSONObject jobj=new JSONObject(jsonResponse);
JSONArray jsonArray=jobj.getJSONArray("d");
result=(String) jobj.getString("d")
我需要从结果中获取每个值。这怎么可能?我的网络服务结果是:
{"d":"{\"Password\":33,\"Userid\":\"343\",\"Username\":fgfg}"}