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"}}]}

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.
add a comment |
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"}}]}

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 forokhttp send json
. It should take you not more than 30 seconds to find the answer
– Vladyslav Matviienko
Nov 19 at 11:41
add a comment |
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"}}]}

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


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 forokhttp send json
. It should take you not more than 30 seconds to find the answer
– Vladyslav Matviienko
Nov 19 at 11:41
add a comment |
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 forokhttp 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
add a comment |
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;
}
add a comment |
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;
}
add a comment |
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;
}
add a comment |
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;
}
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;
}
answered Nov 19 at 12:02


Anil Ghodake
7721233
7721233
add a comment |
add a comment |
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 forokhttp send json
. It should take you not more than 30 seconds to find the answer– Vladyslav Matviienko
Nov 19 at 11:41