Java OkHttp获取请求示例

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

在本文中,我们将用Java创建一个OkHttpGET 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

1.OkHttp GET请求Java示例

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

  1. package com.javaguides.okhttp.tutorial.crud;
  2. import java.io.IOException;
  3. import okhttp3.OkHttpClient;
  4. import okhttp3.Request;
  5. import okhttp3.Response;
  6. public class OkHttpGet {
  7. OkHttpClient client = new OkHttpClient();
  8. public String run(String url) throws IOException {
  9. Request request = new Request.Builder().url(url).build();
  10. try (Response response = client.newCall(request).execute()) {
  11. return response.body().string();
  12. }
  13. }
  14. public static void main(String[] args) throws IOException {
  15. OkHttpGet example = new OkHttpGet();
  16. String response = example.run("http://localhost:8080/api/v1/employees/1");
  17. System.out.println(response);
  18. }
  19. }

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

2.使用OkHttp同步GET

要发送同步GET请求,我们需要基于URL构建request对象并进行调用。执行后,我们返回响应的示例:

  1. package com.javaguides.okhttp.tutorial;
  2. import java.io.IOException;
  3. import okhttp3.OkHttpClient;
  4. import okhttp3.Request;
  5. import okhttp3.Response;
  6. public class OkHttpGetExample {
  7. OkHttpClient client = new OkHttpClient();
  8. public String run(String url) throws IOException {
  9. Request request = new Request.Builder().url(url).build();
  10. try (Response response = client.newCall(request).execute()) {
  11. return response.body().string();
  12. }
  13. }
  14. public static void main(String[] args) throws IOException {
  15. OkHttpGetExample example = new OkHttpGetExample();
  16. String response = example.run("https://raw.github.com/square/okhttp/master/README.md");
  17. System.out.println(response);
  18. }
  19. }

输出:

  1. OkHttp
  2. ======
  3. An HTTP & HTTP/2 client for Android and Java applications. For more information see [the
  4. website][website] and [the wiki][wiki].
  5. .....

3.使用OkHttp的异步GET

现在,要进行异步GET,我们需要对调用进行排队。回调允许我们在响应可读时读取响应。这发生在响应头准备好之后。
读取响应正文可能仍会阻塞OkHttp目前不提供任何异步API来接收部分响应正文:

  1. package com.javaguides.okhttp.tutorial;
  2. import java.io.IOException;
  3. import okhttp3.Call;
  4. import okhttp3.Callback;
  5. import okhttp3.OkHttpClient;
  6. import okhttp3.Request;
  7. import okhttp3.Response;
  8. public class OkHttpAsynchronousGetRequest {
  9. OkHttpClient client = new OkHttpClient();
  10. public static void main(String[] args) throws IOException {
  11. OkHttpAsynchronousGetRequest example = new OkHttpAsynchronousGetRequest();
  12. example.run("https://raw.github.com/square/okhttp/master/README.md");
  13. }
  14. public void run(String url) throws IOException {
  15. Request request = new Request.Builder().url(url).build();
  16. Call call = client.newCall(request);
  17. call.enqueue(new Callback() {
  18. public void onResponse(Call call, Response response) throws IOException {
  19. System.out.println("on Success");
  20. System.out.println(response.toString());
  21. }
  22. public void onFailure(Call call, IOException e) {
  23. System.out.println("onFailure");
  24. }
  25. });
  26. }
  27. }

输出:

  1. on Success
  2. Response{protocol=http/1.1, code=200, message=OK, url=https://raw.githubusercontent.com/square/okhttp/master/README.md}

4.带查询参数的GET请求

最后,为了向GET请求添加查询参数,我们可以利用HttpUrl.Builder。
构建URL后,我们可以将其传递给Request对象:

  1. package com.javaguides.okhttp.tutorial;
  2. import java.io.IOException;
  3. import okhttp3.HttpUrl;
  4. import okhttp3.OkHttpClient;
  5. import okhttp3.Request;
  6. import okhttp3.Response;
  7. public class OkHttpGetQueryParametersExample {
  8. // avoid creating several instances, should be singleon
  9. OkHttpClient client = new OkHttpClient();
  10. public static void main(String[] args) throws IOException {
  11. OkHttpGetQueryParametersExample example = new OkHttpGetQueryParametersExample();
  12. HttpUrl.Builder urlBuilder = HttpUrl.parse("https://api.github.com").newBuilder();
  13. urlBuilder.addQueryParameter("v", "3.0");
  14. urlBuilder.addQueryParameter("user", "RameshMF");
  15. String url = urlBuilder.build().toString();
  16. System.out.println("Print URL : " + url);
  17. System.out.println(example.run(url));
  18. }
  19. // Common method to execute and return response
  20. public String run(String url) throws IOException {
  21. Request request = new Request.Builder().url(url).build();
  22. try (Response response = client.newCall(request).execute()) {
  23. return response.body().string();
  24. }
  25. }
  26. }

输出:

  1. Print URL : https://api.github.com/?v=3.0&user=RameshMF
  2. {"current_user_url":"https://api.github.com/user","current_user_authorizations_html_url":
  3. ....

5.访问Http请求头

  1. package com.javaguides.okhttp.tutorial;
  2. import java.io.IOException;
  3. import okhttp3.OkHttpClient;
  4. import okhttp3.Request;
  5. import okhttp3.Response;
  6. public class OkHttpHeadersExample {
  7. private final OkHttpClient client = new OkHttpClient();
  8. public static void main(String[] args) throws Exception {
  9. OkHttpHeadersExample example = new OkHttpHeadersExample();
  10. example.run();
  11. }
  12. public void run() throws Exception {
  13. Request request = new Request.Builder().url("https://api.github.com/repos/square/okhttp/issues")
  14. .header("User-Agent", "OkHttp Headers.java").addHeader("Accept", "application/json; q=0.5")
  15. .addHeader("Accept", "application/vnd.github.v3+json").build();
  16. try (Response response = client.newCall(request).execute()) {
  17. if (!response.isSuccessful())
  18. throw new IOException("Unexpected code " + response);
  19. System.out.println("Server: " + response.header("Server"));
  20. System.out.println("Date: " + response.header("Date"));
  21. System.out.println("Vary: " + response.headers("Vary"));
  22. }
  23. }
  24. }

输出:

  1. Server: GitHub.com
  2. Date: Mon, 27 May 2019 06:59:49 GMT
  3. Vary: [Accept]

相关文章

最新文章

更多