在请求 OkHttp 中发送 JSON
Send JSON in request OkHttp
朋友们!
我有一个简单的 HTTP 请求:
void postRequest(String postUrl,String phone, String message) throws IOException {
OkHttpClient client = new OkHttpClient();
//RequestBody body = RequestBody.create(JSON, postBody);
RequestBody body = new FormBody.Builder()
.add("phone", phone)
.add("message", message)
.build();
Request request = new Request.Builder()
.url(postUrl)
.post(body)
.build();
//System.out.println(request);
client.newCall(request).enqueue(new Callback() {
@Override
public void onFailure(Call call, IOException e) {
call.cancel();
}
@Override
public void onResponse(Call call, Response response) throws IOException {
Log.d("TAG",response.body().string());
}
});
}
如何正确实现发送 JSON 对象而不是简单的参数?
我的尝试没有成功,所以我真的需要提示。
将接受 JSON 的服务器是 AKKA-HTTP 上的 运行。
如何正确向该服务器发送请求?
final case class Message(phone: String, message: String, service: String)
implicit val item = jsonFormat3(Message)
val queue: Queue[Message] = Queue()
val addMessage = post {
path("add_message"){
parameters("phone".as[String], "message".as[String], "service".as[String]){
(phone, message, service) => {
queue.enqueue(Message(phone, message, service))
complete("ok")
}
}
}
}
以 JSON 格式映射和序列化对象的最简单方法是使用 ObjectMapper class of jackson-databind 库。
我个人用它来实现 RestController
的集成测试,效果很好。这是我发现的实用程序 class,您可以根据自己的目的使用它:
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
public final class JsonUtils {
public static String json(Object obj) throws JsonProcessingException {
ObjectMapper objectMapper = new ObjectMapper();
return objectMapper.writeValueAsString(obj);
}
}
你需要的是一个实现Serializable
的POJO class,然后将你的class的实例传递给json
方法,它将return JSON 格式。
您绝对可以将其用于 Android 个项目。我找到了很多可以添加依赖项的示例,但这取决于您使用的是 Gradle 还是 Maven。
试试看!!!
您觉得这个选项怎么样?
我试图实现它,但发送失败。
我遗漏了一个重要的细节。但是我不明白它是什么。
// create your json here
JSONObject jsonObject = new JSONObject();
try {
jsonObject.put("KEY1", "VALUE1");
jsonObject.put("KEY2", "VALUE2");
} catch (JSONException e) {
e.printStackTrace();
}
OkHttpClient client = new OkHttpClient();
MediaType JSON = MediaType.parse("application/json; charset=utf-8");
// put your json here
RequestBody body = RequestBody.create(JSON, jsonObject.toString());
Request request = new Request.Builder()
.url("https://YOUR_URL/")
.post(body)
.build();
Response response = null;
try {
response = client.newCall(request).execute();
String resStr = response.body().string();
} catch (IOException e) {
e.printStackTrace();
}
朋友们!
我有一个简单的 HTTP 请求:
void postRequest(String postUrl,String phone, String message) throws IOException {
OkHttpClient client = new OkHttpClient();
//RequestBody body = RequestBody.create(JSON, postBody);
RequestBody body = new FormBody.Builder()
.add("phone", phone)
.add("message", message)
.build();
Request request = new Request.Builder()
.url(postUrl)
.post(body)
.build();
//System.out.println(request);
client.newCall(request).enqueue(new Callback() {
@Override
public void onFailure(Call call, IOException e) {
call.cancel();
}
@Override
public void onResponse(Call call, Response response) throws IOException {
Log.d("TAG",response.body().string());
}
});
}
如何正确实现发送 JSON 对象而不是简单的参数? 我的尝试没有成功,所以我真的需要提示。
将接受 JSON 的服务器是 AKKA-HTTP 上的 运行。 如何正确向该服务器发送请求?
final case class Message(phone: String, message: String, service: String)
implicit val item = jsonFormat3(Message)
val queue: Queue[Message] = Queue()
val addMessage = post {
path("add_message"){
parameters("phone".as[String], "message".as[String], "service".as[String]){
(phone, message, service) => {
queue.enqueue(Message(phone, message, service))
complete("ok")
}
}
}
}
以 JSON 格式映射和序列化对象的最简单方法是使用 ObjectMapper class of jackson-databind 库。
我个人用它来实现 RestController
的集成测试,效果很好。这是我发现的实用程序 class,您可以根据自己的目的使用它:
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
public final class JsonUtils {
public static String json(Object obj) throws JsonProcessingException {
ObjectMapper objectMapper = new ObjectMapper();
return objectMapper.writeValueAsString(obj);
}
}
你需要的是一个实现Serializable
的POJO class,然后将你的class的实例传递给json
方法,它将return JSON 格式。
您绝对可以将其用于 Android 个项目。我找到了很多可以添加依赖项的示例,但这取决于您使用的是 Gradle 还是 Maven。
试试看!!!
您觉得这个选项怎么样? 我试图实现它,但发送失败。 我遗漏了一个重要的细节。但是我不明白它是什么。
// create your json here
JSONObject jsonObject = new JSONObject();
try {
jsonObject.put("KEY1", "VALUE1");
jsonObject.put("KEY2", "VALUE2");
} catch (JSONException e) {
e.printStackTrace();
}
OkHttpClient client = new OkHttpClient();
MediaType JSON = MediaType.parse("application/json; charset=utf-8");
// put your json here
RequestBody body = RequestBody.create(JSON, jsonObject.toString());
Request request = new Request.Builder()
.url("https://YOUR_URL/")
.post(body)
.build();
Response response = null;
try {
response = client.newCall(request).execute();
String resStr = response.body().string();
} catch (IOException e) {
e.printStackTrace();
}