我需要发送一个字节 [] 到休息 Web 服务端点,我想知道如何使用 HTTPClient 的 PostMethod 设置请求,有什么想法吗?
问问题
13865 次
1 回答
8
ByteArrayEntity应该是您正在寻找的:
[...]
PostMethod post = new PostMethod(url);
post.setRequestEntity(new ByteArrayEntity(bytes));
post.setRequestHeader("Content-type", "application/octet-stream");
[...]
您必须进行设置content-type
以匹配字节数组中的内容。
于 2011-05-01T07:34:45.353 回答