cn.hutool.http.body.ResourceBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.http.body;
import cn.hutool.core.io.resource.Resource;
import java.io.OutputStream;
/**
* {@link Resource}类型的Http request body,主要发送编码后的表单数据或rest body(如JSON或XML)
*
* @author looly
* @since 5.8.13
*/
public class ResourceBody implements RequestBody {
private final Resource resource;
/**
* 创建 Http request body
*
* @param resource body内容,编码后
* @return BytesBody
*/
public static ResourceBody create(Resource resource) {
return new ResourceBody(resource);
}
/**
* 构造
*
* @param resource Body内容,编码后
*/
public ResourceBody(Resource resource) {
this.resource = resource;
}
@Override
public void write(OutputStream out) {
if(null != this.resource){
this.resource.writeTo(out);
}
}
@Override
public String toString() {
return this.resource.readUtf8Str();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy