Sending different format json to Okhttp [duplicate]











up vote
-1
down vote

favorite













This question already has an answer here:




  • Sending JSON body through POST request in OKhttp in Android

    2 answers




for normal json like



{
"text1":"going",
"text2":"sending"
}


i'm using okhttp3 as



RequestBody body = new MultipartBody.Builder()
.setType(MultipartBody.FORM)
.addFormDataPart("text1",xxx)
.addFormDataPart("text2","yyy")
.build();


how do i use it to send for jsons like



{"Text1":"aaa","text2":[{"module":"bbb","Text":"xxx","params":{"lang": "eng"}}]}









share|improve this question















marked as duplicate by Community Nov 19 at 12:10


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.















  • stackoverflow.com/questions/40523965/…
    – Rohit5k2
    Nov 19 at 11:40










  • addFormDataPartc has nothing to do with JSON. You are not sending JSON this way at all. search for okhttp send json. It should take you not more than 30 seconds to find the answer
    – Vladyslav Matviienko
    Nov 19 at 11:41















up vote
-1
down vote

favorite













This question already has an answer here:




  • Sending JSON body through POST request in OKhttp in Android

    2 answers




for normal json like



{
"text1":"going",
"text2":"sending"
}


i'm using okhttp3 as



RequestBody body = new MultipartBody.Builder()
.setType(MultipartBody.FORM)
.addFormDataPart("text1",xxx)
.addFormDataPart("text2","yyy")
.build();


how do i use it to send for jsons like



{"Text1":"aaa","text2":[{"module":"bbb","Text":"xxx","params":{"lang": "eng"}}]}









share|improve this question















marked as duplicate by Community Nov 19 at 12:10


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.















  • stackoverflow.com/questions/40523965/…
    – Rohit5k2
    Nov 19 at 11:40










  • addFormDataPartc has nothing to do with JSON. You are not sending JSON this way at all. search for okhttp send json. It should take you not more than 30 seconds to find the answer
    – Vladyslav Matviienko
    Nov 19 at 11:41













up vote
-1
down vote

favorite









up vote
-1
down vote

favorite












This question already has an answer here:




  • Sending JSON body through POST request in OKhttp in Android

    2 answers




for normal json like



{
"text1":"going",
"text2":"sending"
}


i'm using okhttp3 as



RequestBody body = new MultipartBody.Builder()
.setType(MultipartBody.FORM)
.addFormDataPart("text1",xxx)
.addFormDataPart("text2","yyy")
.build();


how do i use it to send for jsons like



{"Text1":"aaa","text2":[{"module":"bbb","Text":"xxx","params":{"lang": "eng"}}]}









share|improve this question
















This question already has an answer here:




  • Sending JSON body through POST request in OKhttp in Android

    2 answers




for normal json like



{
"text1":"going",
"text2":"sending"
}


i'm using okhttp3 as



RequestBody body = new MultipartBody.Builder()
.setType(MultipartBody.FORM)
.addFormDataPart("text1",xxx)
.addFormDataPart("text2","yyy")
.build();


how do i use it to send for jsons like



{"Text1":"aaa","text2":[{"module":"bbb","Text":"xxx","params":{"lang": "eng"}}]}




This question already has an answer here:




  • Sending JSON body through POST request in OKhttp in Android

    2 answers








android json okhttp3






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 19 at 11:42









Ali

1,4172929




1,4172929










asked Nov 19 at 11:38









Srijay

137




137




marked as duplicate by Community Nov 19 at 12:10


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






marked as duplicate by Community Nov 19 at 12:10


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.














  • stackoverflow.com/questions/40523965/…
    – Rohit5k2
    Nov 19 at 11:40










  • addFormDataPartc has nothing to do with JSON. You are not sending JSON this way at all. search for okhttp send json. It should take you not more than 30 seconds to find the answer
    – Vladyslav Matviienko
    Nov 19 at 11:41


















  • stackoverflow.com/questions/40523965/…
    – Rohit5k2
    Nov 19 at 11:40










  • addFormDataPartc has nothing to do with JSON. You are not sending JSON this way at all. search for okhttp send json. It should take you not more than 30 seconds to find the answer
    – Vladyslav Matviienko
    Nov 19 at 11:41
















stackoverflow.com/questions/40523965/…
– Rohit5k2
Nov 19 at 11:40




stackoverflow.com/questions/40523965/…
– Rohit5k2
Nov 19 at 11:40












addFormDataPartc has nothing to do with JSON. You are not sending JSON this way at all. search for okhttp send json. It should take you not more than 30 seconds to find the answer
– Vladyslav Matviienko
Nov 19 at 11:41




addFormDataPartc has nothing to do with JSON. You are not sending JSON this way at all. search for okhttp send json. It should take you not more than 30 seconds to find the answer
– Vladyslav Matviienko
Nov 19 at 11:41












1 Answer
1






active

oldest

votes

















up vote
0
down vote













Try this



Add Gradle depends compile 'com.squareup.okhttp3:okhttp:3.2.0'



public static JSONObject foo(String url, JSONObject json) {
JSONObject jsonObjectResp = null;

try {

MediaType JSON = MediaType.parse("application/json; charset=utf-8");
OkHttpClient client = new OkHttpClient();

okhttp3.RequestBody body = RequestBody.create(JSON, json.toString());
okhttp3.Request request = new okhttp3.Request.Builder()
.url(url)
.post(body)
.build();

okhttp3.Response response = client.newCall(request).execute();

String networkResp = response.body().string();
if (!networkResp.isEmpty()) {
jsonObjectResp = parseJSONStringToJSONObject(networkResp);
}
} catch (Exception ex) {
String err = String.format("{"result":"false","error":"%s"}", ex.getMessage());
jsonObjectResp = parseJSONStringToJSONObject(err);
}

return jsonObjectResp;
}





share|improve this answer




























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    Try this



    Add Gradle depends compile 'com.squareup.okhttp3:okhttp:3.2.0'



    public static JSONObject foo(String url, JSONObject json) {
    JSONObject jsonObjectResp = null;

    try {

    MediaType JSON = MediaType.parse("application/json; charset=utf-8");
    OkHttpClient client = new OkHttpClient();

    okhttp3.RequestBody body = RequestBody.create(JSON, json.toString());
    okhttp3.Request request = new okhttp3.Request.Builder()
    .url(url)
    .post(body)
    .build();

    okhttp3.Response response = client.newCall(request).execute();

    String networkResp = response.body().string();
    if (!networkResp.isEmpty()) {
    jsonObjectResp = parseJSONStringToJSONObject(networkResp);
    }
    } catch (Exception ex) {
    String err = String.format("{"result":"false","error":"%s"}", ex.getMessage());
    jsonObjectResp = parseJSONStringToJSONObject(err);
    }

    return jsonObjectResp;
    }





    share|improve this answer

























      up vote
      0
      down vote













      Try this



      Add Gradle depends compile 'com.squareup.okhttp3:okhttp:3.2.0'



      public static JSONObject foo(String url, JSONObject json) {
      JSONObject jsonObjectResp = null;

      try {

      MediaType JSON = MediaType.parse("application/json; charset=utf-8");
      OkHttpClient client = new OkHttpClient();

      okhttp3.RequestBody body = RequestBody.create(JSON, json.toString());
      okhttp3.Request request = new okhttp3.Request.Builder()
      .url(url)
      .post(body)
      .build();

      okhttp3.Response response = client.newCall(request).execute();

      String networkResp = response.body().string();
      if (!networkResp.isEmpty()) {
      jsonObjectResp = parseJSONStringToJSONObject(networkResp);
      }
      } catch (Exception ex) {
      String err = String.format("{"result":"false","error":"%s"}", ex.getMessage());
      jsonObjectResp = parseJSONStringToJSONObject(err);
      }

      return jsonObjectResp;
      }





      share|improve this answer























        up vote
        0
        down vote










        up vote
        0
        down vote









        Try this



        Add Gradle depends compile 'com.squareup.okhttp3:okhttp:3.2.0'



        public static JSONObject foo(String url, JSONObject json) {
        JSONObject jsonObjectResp = null;

        try {

        MediaType JSON = MediaType.parse("application/json; charset=utf-8");
        OkHttpClient client = new OkHttpClient();

        okhttp3.RequestBody body = RequestBody.create(JSON, json.toString());
        okhttp3.Request request = new okhttp3.Request.Builder()
        .url(url)
        .post(body)
        .build();

        okhttp3.Response response = client.newCall(request).execute();

        String networkResp = response.body().string();
        if (!networkResp.isEmpty()) {
        jsonObjectResp = parseJSONStringToJSONObject(networkResp);
        }
        } catch (Exception ex) {
        String err = String.format("{"result":"false","error":"%s"}", ex.getMessage());
        jsonObjectResp = parseJSONStringToJSONObject(err);
        }

        return jsonObjectResp;
        }





        share|improve this answer












        Try this



        Add Gradle depends compile 'com.squareup.okhttp3:okhttp:3.2.0'



        public static JSONObject foo(String url, JSONObject json) {
        JSONObject jsonObjectResp = null;

        try {

        MediaType JSON = MediaType.parse("application/json; charset=utf-8");
        OkHttpClient client = new OkHttpClient();

        okhttp3.RequestBody body = RequestBody.create(JSON, json.toString());
        okhttp3.Request request = new okhttp3.Request.Builder()
        .url(url)
        .post(body)
        .build();

        okhttp3.Response response = client.newCall(request).execute();

        String networkResp = response.body().string();
        if (!networkResp.isEmpty()) {
        jsonObjectResp = parseJSONStringToJSONObject(networkResp);
        }
        } catch (Exception ex) {
        String err = String.format("{"result":"false","error":"%s"}", ex.getMessage());
        jsonObjectResp = parseJSONStringToJSONObject(err);
        }

        return jsonObjectResp;
        }






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 19 at 12:02









        Anil Ghodake

        7721233




        7721233















            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

            How to fix TextFormField cause rebuild widget in Flutter