Java:OkHttp基本使用

简介: Java:OkHttp基本使用

文档:https://square.github.io/okhttp/

依赖

<dependency>
    <groupId>com.squareup.okhttp3</groupId>
    <artifactId>okhttp</artifactId>
    <version>4.8.1</version>
</dependency>
<dependency>
    <groupId>com.google.code.gson</groupId>
    <artifactId>gson</artifactId>
    <version>2.8.6</version>
</dependency>
<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.13</version>
    <scope>test</scope>
</dependency>

代码示例

package com.demo;
import com.google.gson.Gson;
import okhttp3.*;
import org.junit.Test;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
public class Demo {
    public static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");
    /**
     * 发送GET请求
     */
    @Test
    public void getRequest() throws IOException {
        OkHttpClient client = new OkHttpClient();
        Request request = new Request.Builder()
                .url("http://httpbin.org/get")
                .build();
        Response response = client.newCall(request).execute();
        if (response.isSuccessful()) {
            System.out.println(response.body().string());
        }
    }
    /**
     * POST请求
     */
    @Test
    public void postRequest() throws IOException {
        OkHttpClient client = new OkHttpClient();
        // 提交FormData
        FormBody.Builder form = new FormBody.Builder();
        form.add("name", "Tom");
        form.add("age", "23");
        Request request = new Request.Builder()
                .url("http://httpbin.org/post")
                .post(form.build())
                .build();
        Response response = client.newCall(request).execute();
        System.out.println(response.body().string());
    }
    /**
     * 提交Json
     */
    @Test
    public void postJsonRequest() throws IOException {
        OkHttpClient client = new OkHttpClient();
        Map<String, Object> map = new HashMap<>();
        map.put("name", "Tom");
        map.put("age", 23);
        Gson gson = new Gson();
        String data = gson.toJson(map);
        RequestBody requestBody = RequestBody.create(data, JSON);
        Request request = new Request.Builder()
                .url("http://httpbin.org/post")
                .post(requestBody)
                .build();
        Response response = client.newCall(request).execute();
        System.out.println(response.body().string());
    }
}


相关文章
|
8月前
|
Java 机器人 开发者
21、Java 中接口的基本使用
21、Java 中接口的基本使用
45 0
|
小程序 Java 程序员
【Java基础教程】初识Java
【Java基础教程】初识Java
100 0
java202302java学习笔记第十五天-集合的基本使用2
java202302java学习笔记第十五天-集合的基本使用2
68 0
java202302java学习笔记第十五天-集合的基本使用2
java202302java学习笔记第十五天-集合的基本使用1
java202302java学习笔记第十五天-集合的基本使用1
71 0
java202302java学习笔记第十五天-集合的基本使用1
java202302java学习笔记第十五天-集合的基本使用3
java202302java学习笔记第十五天-集合的基本使用3
55 0
java202302java学习笔记第十五天-集合的基本使用3
java202303java学习笔记第四十五天javaweb-依赖传递
java202303java学习笔记第四十五天javaweb-依赖传递
38 0
java202302java学习笔记第十二天-封装3
java202302java学习笔记第十二天-封装3
82 0
java202302java学习笔记第十二天-封装3
java202302java学习笔记第十二天-封装2
java202302java学习笔记第十二天-封装2
77 0
java202302java学习笔记第十二天-封装2
|
Java 程序员 数据安全/隐私保护
15、JAVA入门——封装
15、JAVA入门——封装
158 0
15、JAVA入门——封装

热门文章

最新文章

下一篇
开通oss服务