byte[] 的 HTTPClient PostMethod
我需要发送一个 byte[] 到 REST Web 服务端点,我想知道如何使用 HTTPClient 的 PostMethod 设置请求,有什么想法吗?
I need to send a byte[] to rest web service end point and I was wondering how to setup the request using HTTPClient's PostMethod, any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ByteArrayEntity 应该是您要查找的内容:
您必须设置
content-type
以匹配字节数组中的内容。ByteArrayEntity should be what your're looking for:
You will have to set
content-type
to match what you have in the byte array.