OkHttp POST请求Java示例

x33g5p2x  于2022-10-16 转载在 Java  
字(4.9k)|赞(0)|评价(0)|浏览(1103)

在本文中,我们将用Java创建一个OkHttppost HTTP请求示例。

OkHTTP是一个开源项目,旨在成为Android和Java应用程序的高效HTTP客户端。

OkHttp支持Android 5.0+(API级别21+)和Java 1.8+。在本文中,我们将使用Java1.8+编写代码。

Maven依赖项

首先将库作为依赖项添加到pom.xml中:

  1. <dependency>
  2. <groupId>com.squareup.okhttp3</groupId>
  3. <artifactId>okhttp</artifactId>
  4. <version>3.9.0</version>
  5. </dependency>

要查看此库的最新依赖项,请查看page on Maven Central

OkHttp POST请求Java示例

在这个例子中,我们将为spring boot CRUD示例项目发出POST HTTP客户端请求。这个spring-boot-crud示例项目已经部署、启动并运行。

  1. package com.javaguides.okhttp.tutorial.crud;
  2. import java.io.IOException;
  3. import okhttp3.MediaType;
  4. import okhttp3.OkHttpClient;
  5. import okhttp3.Request;
  6. import okhttp3.RequestBody;
  7. import okhttp3.Response;
  8. public class OkHttpPost {
  9. public static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");
  10. OkHttpClient client = new OkHttpClient();
  11. String post(String url, String json) throws IOException {
  12. RequestBody body = RequestBody.create(JSON, json);
  13. Request request = new Request.Builder().url(url).post(body).build();
  14. try (Response response = client.newCall(request).execute()) {
  15. return response.body().string();
  16. }
  17. }
  18. public static void main(String[] args) throws IOException {
  19. OkHttpPost example = new OkHttpPost();
  20. String json = "{\r\n" +
  21. " \"firstName\" : \"Ramesh\",\r\n" +
  22. " \"lastName\" : \"Fadatare\",\r\n" +
  23. " \"emailId\" : \"ramesh@gmail.com\"\r\n" +
  24. "}";
  25. String response = example.post("http://localhost:8080/api/v1/employees", json);
  26. System.out.println(response);
  27. }
  28. }

下图显示了源代码的屏幕截图以及输出:

基本POST请求示例

在这个简单的例子中,我们构建了一个RequestBody,用POST请求发送两个参数——“用户名”和“密码”:

  1. package com.javaguides.okhttp.tutorial;
  2. import java.io.IOException;
  3. import okhttp3.Call;
  4. import okhttp3.FormBody;
  5. import okhttp3.OkHttpClient;
  6. import okhttp3.Request;
  7. import okhttp3.RequestBody;
  8. import okhttp3.Response;
  9. public class OkHttpPostRequestParameterExample {
  10. private static final String BASE_URL = "http://localhost:8080/spring-rest";
  11. static OkHttpClient client = new OkHttpClient();
  12. public static void main(String[] args) throws IOException {
  13. final RequestBody formBody = new FormBody.Builder()
  14. .add("username", "test")
  15. .add("password", "test").build();
  16. final Request request = new Request.Builder()
  17. .url(BASE_URL + "/users")
  18. .post(formBody).build();
  19. final Call call = client.newCall(request);
  20. final Response response = call.execute();
  21. System.out.println(response);
  22. }
  23. }

POST请求和JSON示例

在本例中,我们将发送一个POST请求,其中JSON为RequestBody:

  1. package com.javaguides.okhttp.tutorial;
  2. import java.io.IOException;
  3. import okhttp3.MediaType;
  4. import okhttp3.OkHttpClient;
  5. import okhttp3.Request;
  6. import okhttp3.RequestBody;
  7. import okhttp3.Response;
  8. public class OkHttpPostExample {
  9. public static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");
  10. OkHttpClient client = new OkHttpClient();
  11. String post(String url, String json) throws IOException {
  12. RequestBody body = RequestBody.create(JSON, json);
  13. Request request = new Request.Builder().url(url).post(body).build();
  14. try (Response response = client.newCall(request).execute()) {
  15. return response.body().string();
  16. }
  17. }
  18. String bowlingJson(String player1, String player2) {
  19. return "{'winCondition':'HIGH_SCORE'," + "'name':'Bowling'," + "'round':4," + "'lastSaved':1367702411696," +
  20. "'dateStarted':1367702378785," + "'players':[" + "{'name':'" + player1 +
  21. "','history':[10,8,6,7,8],'color':-13388315,'total':39}," + "{'name':'" + player2 +
  22. "','history':[6,10,5,10,10],'color':-48060,'total':41}" + "]}";
  23. }
  24. public static void main(String[] args) throws IOException {
  25. OkHttpPostExample example = new OkHttpPostExample();
  26. String json = example.bowlingJson("Jesse", "Jake");
  27. String response = example.post("http://www.roundsapp.com/post", json);
  28. System.out.println(response);
  29. }
  30. }

输出:

  1. http://www.roundsapp.com/393141003

请注意,输出响应URL包含新创建的资源的ID。

Multipart POST请求

在这个例子中,我们将发送一个POST Multipart Request。我们需要将RequestBody构建为MultipartBody,以发布文件、用户名和密码:

  1. package com.javaguides.okhttp.tutorial;
  2. import java.io.File;
  3. import java.io.IOException;
  4. import okhttp3.Call;
  5. import okhttp3.MediaType;
  6. import okhttp3.MultipartBody;
  7. import okhttp3.OkHttpClient;
  8. import okhttp3.Request;
  9. import okhttp3.RequestBody;
  10. import okhttp3.Response;
  11. public class OkHttpPostUploadFileExample {
  12. private static final String BASE_URL = "http://localhost:8080/spring-rest";
  13. static OkHttpClient client = new OkHttpClient();
  14. public static void main(String[] args) throws IOException {
  15. RequestBody requestBody = new MultipartBody.Builder().setType(MultipartBody.FORM)
  16. .addFormDataPart("username", "test").addFormDataPart("password", "test")
  17. .addFormDataPart("file", "file.txt", RequestBody.create(MediaType.parse("application/octet-stream"),
  18. new File("src/test/resources/test.txt")))
  19. .build();
  20. Request request = new Request.Builder().url(BASE_URL + "/users/multipart").post(requestBody).build();
  21. Call call = client.newCall(request);
  22. Response response = call.execute();
  23. System.out.println(response.code());
  24. }
  25. }

相关文章

最新文章

更多