有人可以帮助我获取有关
的更多信息
BasicHttpEntityEnclosingRequest(String method, String uri)
。
This没有帮助我理解上述主题。
答案 0 :(得分:0)
你打算用BasicHttpEntityEnclosingRequest做什么? httpcomponents中的实体引用请求的正文或有效负载。
在发送具有正文的HTTP请求时,您应该使用HttpEntityEnclosingRequestBase的子类,即HttpPut,HttpPost或HttpPatch。 http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/client/methods/HttpEntityEnclosingRequestBase.html
您应该阅读HttpClient Tutorial,尤其是第1章,以帮助您入门。