我有很多要求xml和/或base64编码的图像, 我要把它发送到客户端服务器, 它们有他们的 REST API 。 还需要将多个请求合并到一个请求中, 才能有效地使用带宽 。 所以我正在考虑使用 mime- plus 请求 。 我可在 java 中使用哪些图书馆来完成这个请求 。 我知道如何在 java 中发送常规的 http unclication, 但我不知道如何发送多部分 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。