We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://stackoverflow.com/questions/12535016/apache-httpclient-get-with-body
HttpGetWithEntity.java
import org.apache.http.client.methods.HttpEntityEnclosingRequestBase; import org.apache.http.client.methods.HttpGet; import java.net.URI; public class HttpGetWithEntity extends HttpEntityEnclosingRequestBase { public HttpGetWithEntity() { super(); } public HttpGetWithEntity(URI uri) { super(); setURI(uri); } public HttpGetWithEntity(String uri) { super(); setURI(URI.create(uri)); } @Override public String getMethod() { return HttpGet.METHOD_NAME; } }
使用方法
HttpGetWithEntity httpGet= new HttpGetWithEntity(url); HttpEntity httpEntity = new StringEntity(body, ContentType.APPLICATION_JSON); httpGet.setEntity(httpEntity); httpClient.execute(httpGet);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://stackoverflow.com/questions/12535016/apache-httpclient-get-with-body
HttpGetWithEntity.java
使用方法
The text was updated successfully, but these errors were encountered: