HttpClient - 将 CipherInputStream 添加到 MultipartEntity

发布于 2024-10-25 05:16:45 字数 208 浏览 2 评论 0原文

我想将一个加密流添加到我的多方实体中,以将其上传到我的 servlet,但我不知道该怎么做... 嗯,那么 MultipartEntity 对于 addPart(...,...) 方法参数来说非常有限。 我没有找到该领域的例子,所以我需要你的帮助。 请分享任何有用的片段和想法。

任何评论表示赞赏。

安德鲁

·P.S.我正在使用 HttpClient 4

I want to add an encripted stream to my multipartentity to upload it to my servlet but I don't know how to do that... Emm then MultipartEntity is quite limited as for addPart(...,...) method params.
I found no examples in that area so I need your help.
Please share any useful snippets and ideas.

Any comment is appreciated.

Andrew

P.S. I am using HttpClient 4

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

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

发布评论

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

评论(1

゛时过境迁 2024-11-01 05:16:45

您是否尝试将 CipherInputStream 封装到 org.apache.http.entity.mime.content.InputStreamBody

之后,您可以将其封装在 org.apache.http.entity.mime.FormBodyPart 可以通过 addBodyPart() 添加到您的 HttpMultipart 实例。

Have you tried to encapsulate the CipherInputStream into a org.apache.http.entity.mime.content.InputStreamBody?

Afterwards you can encapsulate it in an org.apache.http.entity.mime.FormBodyPart which can be added via addBodyPart() to your HttpMultipart instance.

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