简体   繁体   中英

how to post (parameters) and get the response from Httpclient and Httppost in android

I want correct response from web server. The structure of my json response is like this.

{
    "message": "Successfully",
    "profile": {
        "name": "myname",
        "mail": "mymail",
        "sex" : sex
    }
}

But I always get the response as below.

{
    "message": "failed"
}

Below is my code.

String url ="myurlXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";

JSONObject json1 = new JSONObject();
json1.put("name", myname);
json1.put("mail", mymail);
json1.put("sex", sex);

HttpClient client = new DefaultHttpClient();

HttpPost post1 = new HttpPost(url);
post1.setHeader("Content-type", "application/json");
post1.setHeader("Accept", "application/json");
post1.setEntity(new StringEntity(json1.toString(), "UTF-8"));

HttpResponse httpresponse = client.execute(post1);
HttpEntity entity = httpresponse.getEntity();

InputStream stream = entity.getContent();
String result = convertStreamToString(stream);   

public static String convertStreamToString(InputStream is) {
    BufferedReader reader = new BufferedReader(new InputStreamReader(is));
    StringBuilder sb = new StringBuilder();
    String line = null;
    try {
        while ((line = reader.readLine()) != null) {
            sb.append(line + "\n");
        } 
    } catch (IOException e) {
          e.printStackTrace();
    } finally {
          try {
              is.close();
          } catch (IOException e) {
              e.printStackTrace();
          }
    }
    return sb.toString();
}

Is there anything wrong? Anyone please help me. Thanks in advance

Try replace the code for this:

JSONObject json2 = new JSONObject();
JSONObject json1 = new JSONObject();
json1.put("name", myname);
json1.put("mail", mymail);
json1.put("sex", sex);

json2.put("message", "Successfully");
json2.put("profile", json1);
HttpPost post1 = new HttpPost(url);

post1.setHeader("Content-type", "application/json");
post1.setHeader("Accept", "application/json");
post1.setEntity(new StringEntity(json2.toString(), "UTF-8"));

HttpResponse httpresponse = client.execute(post1);
HttpEntity entity = httpresponse.getEntity();
InputStream stream = entity.getContent();
String result = convertStreamToString(stream);  

hope it helps

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM