我对 Android 很陌生。所以,我在 android 中使用 Json 数据处理 HttpPost。
JSONObject jsonObj = new JSONObject();
JSONObject jsonObjDasUser = new JSONObject();
jsonObj.put("name", "Login");
jsonObj.put("type", "request");
jsonObj.put("UserCredential", jsonObjUserCredential );
jsonObjUserCredential .put("username", id);
jsonObjUserCredential .put("password", password);
// Create the POST object and add the parameters
HttpPost httpPost = new HttpPost(url);
StringEntity entity = new StringEntity(jsonObj.toString(), HTTP.UTF_8);
entity.setContentType("application/json");
httpPost.setEntity(entity);
HttpClient client = new DefaultHttpClient();
如何将 jsonObjUserCredential 包含为一个实体,例如:::
//StringEntity userCredential = new StringEntity(jsonObjUserCredential .toString(),HTTP.UTF_8);??????
这里做错了什么??????
请帮我....