org.yelong.http.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yelong-http Show documentation
Show all versions of yelong-http Show documentation
简单封装java对http的请求,实现便捷的发送http请求(可以发送携带文件的请求)
The newest version!
/**
*
*/
package org.yelong.http;
/**
* @since 1.0
*/
public final class Constants {
/**
* 默认的字符编码
*/
public static String DEFAULT_CHARSET = "UTF-8";
/**
* 空的字节数组
*/
public static final byte[] EMPTY_BYTE_ARRAY = new byte[0];
}