如何从servlet向另一台服务器发送请求

时间:2012-03-27 15:20:24

标签: jsp servlets

我想从我的servlet向另一台服务器发送请求,并将响应放在同一个servlet中。例如:arequest:

http://www.anotherserver.com?para=pValue    

被发送给其他人,并获得它发送的响应,然后处理响应。

1 个答案:

答案 0 :(得分:1)

您可以在Java代码中使用Apache HttpClient(http://hc.apache.org/httpcomponents-client-ga/index.html)进行HTTP调用。

示例:http://hc.apache.org/httpcomponents-client-ga/httpclient/examples/org/apache/http/examples/client/ClientWithResponseHandler.java