有人可以帮助我获取有关
BasicHttpEntityEnclosingRequest(String method, String uri)
.
这并没有帮助我理解上述主题。
有人可以帮助我获取有关
BasicHttpEntityEnclosingRequest(String method, String uri)
.
这并没有帮助我理解上述主题。
你想用 BasicHttpEntityEnclosureRequest 做什么?httpcomponents 中的实体是指请求的主体或负载。
在发送具有正文的 HTTP 请求时,您应该使用 HttpEntityEnclosureRequestBase 的子类,即 HttpPut、HttpPost 或 HttpPatch。 http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/client/methods/HttpEntityEnclosingRequestBase.html
您应该阅读HttpClient 教程,尤其是第 1 章以帮助您入门。