用 Java 发送 HTTP POST 请求 [英] Sending HTTP POST Request In Java

查看:49
本文介绍了用 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 请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆