什么是用于HTTP POST,GET等的最佳Java库?[关闭]


96

就性能,稳定性,成熟度等而言,用于HTTP POST,GET等的最佳Java库是什么?有没有一个特定的库比其他库使用得更多?

我的要求是将HTTPS POST请求提交到远程服务器。我过去使用过java.net。*包以及org.apache.commons.httpclient。*包。两者都完成了工作,但是我想请您提出一些意见/建议。

Answers:


107

imho:Apache HTTP客户端

用法示例:

import org.apache.commons.httpclient.*;
import org.apache.commons.httpclient.methods.*;
import org.apache.commons.httpclient.params.HttpMethodParams;

import java.io.*;

public class HttpClientTutorial {

  private static String url = "http://www.apache.org/";

  public static void main(String[] args) {
    // Create an instance of HttpClient.
    HttpClient client = new HttpClient();

    // Create a method instance.
    GetMethod method = new GetMethod(url);

    // Provide custom retry handler is necessary
    method.getParams().setParameter(HttpMethodParams.RETRY_HANDLER, 
            new DefaultHttpMethodRetryHandler(3, false));

    try {
      // Execute the method.
      int statusCode = client.executeMethod(method);

      if (statusCode != HttpStatus.SC_OK) {
        System.err.println("Method failed: " + method.getStatusLine());
      }

      // Read the response body.
      byte[] responseBody = method.getResponseBody();

      // Deal with the response.
      // Use caution: ensure correct character encoding and is not binary data
      System.out.println(new String(responseBody));

    } catch (HttpException e) {
      System.err.println("Fatal protocol violation: " + e.getMessage());
      e.printStackTrace();
    } catch (IOException e) {
      System.err.println("Fatal transport error: " + e.getMessage());
      e.printStackTrace();
    } finally {
      // Release the connection.
      method.releaseConnection();
    }  
  }
}

一些重要功能:

  • 基于标准的纯Java,HTTP版本1.0和1.1的实现
    • 在可扩展的OO框架中完全实现所有HTTP方法(GET,POST,PUT,DELETE,HEAD,OPTIONS和TRACE)。
    • 支持使用HTTPS(基于SSL的HTTP)协议进行加密。
    • 粒度非标准配置和跟踪。
    • 通过HTTP代理的透明连接。
    • 通过CONNECT方法通过HTTP代理建立的隧道HTTPS连接。
    • 使用本机Java套接字支持通过SOCKS代理(版本4和5)进行透明连接。
    • 使用基本,摘要和加密NTLM(NT Lan Manager)方法进行身份验证。
    • 自定义身份验证方法的插件机制。
    • 多部分表单POST,用于上传大文件。
    • 可插拔安全套接字实现,使使用第三方解决方案更加容易
    • 连接管理支持在多线程应用程序中使用。支持设置最大总连接数以及每个主机的最大连接数。检测并关闭陈旧的连接。
    • 自动Cookie处理,用于从服务器读取Set-Cookie:标头,并在适当时在Cookie:标头中发回。
    • 自定义Cookie策略的插件机制。
    • 请求输出流以避免通过直接流到服务器的套接字来缓冲任何内容主体。
    • 响应输入流通过直接从套接字流传输到服务器来有效读取响应主体。
    • 在HTTP / 1.0中使用KeepAlive的持久连接以及在HTTP / 1.1中的持久性
    • 直接访问服务器发送的响应代码和标头。
    • 设置连接超时的能力。
    • HttpMethods实现了命令模式,以允许并行请求和有效的连接重用。
    • 源代码可根据Apache软件许可免费获得。

7
+1好答案:好榜样。好点。您确实销售Apache HTTP客户端。
therobyouknow 2010年

23
该文档已过期。HttpClient不再是一个具体的类,它是一个接口,因此上面的代码在尝试实例化此HttpClient接口时将不起作用。相反,您必须实例化一个实现HttpClient接口的类,例如DefaultHttpClient。
therobyouknow

4
感觉每个发行版都有太多重大更改...多年来对这个库真的很沮丧....现在他们似乎从池中泄漏了连接,我最多可以设置20个.... grrrrrr 。
迪恩·希勒

5
现在,Apache HttpClient似乎已停产,并提供了一个新的Apache库。
安德鲁·艾里特

17
亲爱的投票人,这个答案是大约5年前提出的
克里斯


16

我偏爱泽西岛。我们在所有项目中都使用1.10,并且没有遇到无法解决的问题。

我喜欢它的一些原因:

  • 供应商-在泽西岛创建了soap 1.1 / 1.2供应商,并且不再需要为我们的JAX-WS呼叫使用笨重的AXIS
  • 过滤器-创建的数据库日志记录过滤器,用于记录整个请求(包括请求/响应头),同时防止记录敏感信息。
  • JAXB-支持直接从请求/响应到对象的封送处理
  • API易于使用

实际上,HTTPClient和Jersey在实现和API方面非常相似。Jersey的扩展也允许它支持HTTPClient。

Jersey 1.x的一些代码示例: https //blogs.oracle.com/enterprisetechtips/entry/using_restful_web_services_with

http://www.mkyong.com/webservices/jax-rs/restful-java-client-with-jersey-client/

带有Jersey客户端的HTTPClient:https ://blogs.oracle.com/PavelBucek/entry/jersey_client_apache_http_client


11

我同意httpclient是一个标准的东西-但我想您正在寻找选项,因此...

Restlet提供了一个专门用于与Restful Web服务进行交互的http客户端。

示例代码:

    Client client = new Client(Protocol.HTTP);
    Request r = new Request();
    r.setResourceRef("http://127.0.0.1:8182/sample");
    r.setMethod(Method.GET);
    r.getClientInfo().getAcceptedMediaTypes().add(new Preference<MediaType>(MediaType.TEXT_XML));
    client.handle(r).getEntity().write(System.out);

有关更多详细信息,请参见http://www.restlet.org/


6

我可以推荐您corn-httpclient。它简单,快速且足以应付大多数情况。

HttpForm form = new HttpForm(new URI("http://localhost:8080/test/formtest.jsp"));
//Authentication form.setCredentials("user1", "password");
form.putFieldValue("input1", "your value");
HttpResponse response = form.doPost();
assertFalse(response.hasError());
assertNotNull(response.getData());
assertTrue(response.getData().contains("received " + val));

Maven依赖

<dependency>
    <groupId>net.sf.corn</groupId>
    <artifactId>corn-httpclient</artifactId>
    <version>1.0.0</version>
</dependency>


5

我想提到Ning Async Http客户端库。我从未使用过它,但是与过去我一直使用的Apache Http Client相比,我的同事对此赞不绝口。我特别感兴趣的是,它基于高性能异步I / O框架Netty,对此我更加熟悉并深信。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.