我正在使用 apacheHttpClient
将几个文件发布到服务器。这是代码:
public static HttpResponse stringResponsePost(String urlString, String content, byte[] image,
HttpContext localContext, HttpClient httpclient) throws Exception {
URL url = new URL(URLDecoder.decode(urlString, "utf-8"));
URI u = url.toURI();
HttpPost post = new HttpPost();
post.setURI(u);
MultipartEntity reqEntity = new MultipartEntity();
StringBody sb = new StringBody(content, HTTP_CONTENT_TYPE_JSON, Charset.forName("UTF-8"));
ByteArrayBody ib = new ByteArrayBody(image, HTTP_CONTENT_TYPE_JPEG, "image");
reqEntity.addPart("interview_data", sb);
reqEntity.addPart("interview_image", ib);
post.setEntity(reqEntity);
HttpResponse response = null;
response = httpclient.execute(post, localContext);
return response;
}
问题是,MultipartEntity
类只有isChunked()
方法(总是返回 false),如果我希望为我的多部分实体启用卡盘编码,则没有“setChunked(boolean)”选项。
我的问题是:
HTTP 多部分和分块可以根据协议规范共存吗?
InputStreamEntity
如果没有,为什么像class这样的其他实体有setChunked(boolean)
whereMultipartEntity
没有?有没有办法在启用分块的情况下“一次”发布多个文件,最好是使用 apache 库?