HTTPClient 4.1 中包含文件和字符串的多部分 POST

发布于 2024-10-18 08:58:31 字数 162 浏览 2 评论 0原文

我需要创建包含字段的多部分 POST 请求: 更新[图像标题] = 字符串 更新[图像] = 图像数据本身。 正如您所看到的,两者都在称为“更新”的关联数组中。 我如何使用 HTTPClient 4.1 做到这一点,因为我只找到了该库的 3.x 行的示例。

先感谢您。

I need to create Multi-part POST request containing fields:
update[image_title] = String
update[image] = image-data itself
.
As you can see both are in associative array called "update".
How could I do it with HTTPClient 4.1, because I found only examples for 3.x line of this library.

Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不弃不离 2024-10-25 08:58:31

可能为时已晚,但可能会对某人有所帮助。我有完全相同的问题。
假设您有一个文件对象,其中包含有关图像的必要信息。

HttpPost post = new HttpPost(YOUR_URL);
MultipartEntity entity = new MultipartEntity();
ByteArrayBody body = new ByteArrayBody(file.getData(), file.getName());     
String imageTitle = new StringBody(file.getName());

entity.addPart("imageTitle", imageTitle);
entity.addPart("image", body);
post.setEntity(entity);
HttpClient client = new DefaultHttpClient();
HttpResponse response = null;
    try {
        response = client.execute(post);
    } catch (ClientProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

请注意,MultiPartEntityHttpMime 模块的一部分。因此,您需要将该 jar 放在 lib 目录中或包含为(maven/gradle)依赖项。

Probably too late but might help someone. I had the exact same issue.
Assuming that you have a file object which has necessary information about the image

HttpPost post = new HttpPost(YOUR_URL);
MultipartEntity entity = new MultipartEntity();
ByteArrayBody body = new ByteArrayBody(file.getData(), file.getName());     
String imageTitle = new StringBody(file.getName());

entity.addPart("imageTitle", imageTitle);
entity.addPart("image", body);
post.setEntity(entity);
HttpClient client = new DefaultHttpClient();
HttpResponse response = null;
    try {
        response = client.execute(post);
    } catch (ClientProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

Please note that MultiPartEntity is part of HttpMime module. So you need to put that jar in the lib directory or include as a (maven/gradle) dependency.

笨笨の傻瓜 2024-10-25 08:58:31

是的,我发现找到 HTTP Client 4 示例等确实很痛苦,因为全能的 google 几乎总是指向 HTTP 3。

无论如何,此页面上的最后一个示例 - http://hc.apache.org/httpcomponents-client-ga/examples.html 应该是什么你想要的。

Yeah I've found it a real pain to find HTTP Client 4 examples, etc as well, since the almighty google almost always still points to HTTP 3.

At any rate, the last sample on this page - http://hc.apache.org/httpcomponents-client-ga/examples.html should be what you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文