Sending HTTP POST Request In Java(在 Java 中发送 HTTP POST 请求)
问题描述
让我们假设这个 URL...
lets assume this URL...
http://www.example.com/page.php?id=10
(这里的id需要在POST请求中发送)
(Here id needs to be sent in a POST request)
我想将 id = 10
发送到服务器的 page.php
,它以 POST 方法接受它.
I want to send the id = 10
to the server's page.php
, which accepts it in a POST method.
我如何在 Java 中做到这一点?
How can i do this from within Java?
我试过这个:
URL aaa = new URL("http://www.example.com/page.php");
URLConnection ccc = aaa.openConnection();
但我仍然不知道如何通过 POST 发送它
But I still can't figure out how to send it via POST
推荐答案
更新答案:
由于原始答案中的某些类在较新版本的 Apache HTTP 组件中已弃用,因此我发布此更新.
Updated Answer:
Since some of the classes, in the original answer, are deprecated in the newer version of Apache HTTP Components, I'm posting this update.
顺便说一句,您可以访问完整文档以获取更多示例 这里.
By the way, you can access the full documentation for more examples here.
HttpClient httpclient = HttpClients.createDefault();
HttpPost httppost = new HttpPost("http://www.a-domain.com/foo/");
// Request parameters and other properties.
List<NameValuePair> params = new ArrayList<NameValuePair>(2);
params.add(new BasicNameValuePair("param-1", "12345"));
params.add(new BasicNameValuePair("param-2", "Hello!"));
httppost.setEntity(new UrlEncodedFormEntity(params, "UTF-8"));
//Execute and get the response.
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
if (entity != null) {
try (InputStream instream = entity.getContent()) {
// do something useful
}
}
原答案:
我推荐使用 Apache HttpClient.它更快更容易实现.
Original Answer:
I recommend to use Apache HttpClient. its faster and easier to implement.
HttpPost post = new HttpPost("http://jakarata.apache.org/");
NameValuePair[] data = {
new NameValuePair("user", "joe"),
new NameValuePair("password", "bloggs")
};
post.setRequestBody(data);
// execute method and handle any error responses.
...
InputStream in = post.getResponseBodyAsStream();
// handle response.
有关更多信息,请查看以下网址:http://hc.apache.org/
for more information check this url: http://hc.apache.org/
这篇关于在 Java 中发送 HTTP POST 请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Java 中发送 HTTP POST 请求


- 转换 ldap 日期 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 获取数字的最后一位 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01