我有一堆 xml 和/或 base64 编码图像类型的请求,我想将其发送到客户端的服务器,它们有自己的 REST API。还需要将多个请求合并为一个以有效利用带宽。所以我在考虑使用 mime-multipart 请求。我可以在java中使用什么库来完成这个。我知道如何在 java 中发送常规 httpRequest 但我不知道如何发送多部分 mime 请求?即我将如何为每个正文指定不同的内容类型?将不胜感激任何指针。
我想发送这样的东西
Content-type: multipart/form-data;boundary=main_boundary
--main_boundary
Content-type: text/xml
<?xml version='1.0'?>
<content>
Some content goes here
</content>
--main_boundary
Content-type: multipart/mixed;boundary=sub_boundary
--main_boundary
Content-type: text/plain; charset=utf-8
{base64 encoded string that represents image}
--main_boundary--
如果我的理解有误,请随时纠正我。这是我第一次使用 mime。