All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.zeimao77.product.http.IHttpClient Maven / Gradle / Ivy

package top.zeimao77.product.http;

import java.util.Map;

public interface IHttpClient {

    /**
     * 可以发送GET请求
     * @param url 请求地址
     * @return 响应结果字符串
     */
    default String sendPost(String url,String body) {
        return sendPost(url,body,null,5);
    }

    String sendPost(String url, String body, Map headers, int timeout);

    default String sendGet(String url) {
        return sendGet(url,null,5);
    }

    String sendGet(String url,Map headers,int timeout);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy