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

top.jfunc.common.http.IoUtil Maven / Gradle / Ivy

Go to download

http客户端请求工具类,有多种实现:OkHttp3、ApacheHttpClient、HttpURLConnection、Jodd-Http,可以随意切换http实现

There is a newer version: 1.2.12
Show newest version
package top.jfunc.common.http;

import java.io.ByteArrayInputStream;
import java.io.InputStream;

/**
 * @author xiongshiyan at 2019/4/3 , contact me with email [email protected] or phone 15208384257
 */
public class IoUtil {
    private IoUtil(){}
    /**
     * 获取一个空的,防止空指针
     */
    public static InputStream emptyInputStream() {
        return new ByteArrayInputStream(new byte[]{});
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy