6

我需要发送一个字节 [] 到休息 Web 服务端点,我想知道如何使用 HTTPClient 的 PostMethod 设置请求,有什么想法吗?

4

1 回答 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 回答