/**
* @since 4.2
*/
@SuppressWarnings("deprecation")
public ByteArrayEntityHC4(final byte[] b, final ContentType contentType) {
super();
Args.notNull(b, "Source byte array");
this.content = b;
this.b = b;
this.off = 0;
this.len = this.b.length;
if (contentType != null) {
setContentType(contentType.toString());
}
}
ByteArrayEntityHC4.java 文件源码
java
阅读 19
收藏 0
点赞 0
评论 0
项目:remote-files-sync
作者:
评论列表
文章目录