5

我只是无法通过回答这个问题来帮助自己。

如何在 Apache HttpClient 4.1.3 中设置 nonProxyHosts?

在旧的 Httpclient 3.x 中,这非常简单。你可以使用 setNonProxyHosts 方法设置它。

但是现在,新版本没有等效的方法。我一直在查看 api 文档、教程和示例,但到目前为止还没有找到解决方案。

要设置一个普通的代理,你可以这样做:

    HttpHost proxy = new HttpHost("127.0.0.1", 8080, "http");
    DefaultHttpClient httpclient = new DefaultHttpClient();
    httpclient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy);

有人知道新版本 httpclient 4.1.3 中是否有现成的解决方案来设置 nonProxyHosts 还是我必须自己做

    if (targetHost.equals(nonProxyHost) {
    dont use a proxy
    }

提前致谢。

4

2 回答 2

3

@moohkooh:这就是我解决问题的方法。

DefaultHttpClient client = new DefaultHttpClient();

//use same proxy as set in the system properties by setting up a routeplan
ProxySelectorRoutePlanner routePlanner = new ProxySelectorRoutePlanner(client.getConnectionManager().getSchemeRegistry(),
    new LinkCheckerProxySelector());
client.setRoutePlanner(routePlanner);

然后你的 LinkcheckerProxySelector() 会喜欢这样的东西。

private class LinkCheckerProxySelector extends ProxySelector {

@Override
public List<Proxy> select(final URI uri) {

  List<Proxy> proxyList = new ArrayList<Proxy>();

  InetAddress addr = null;
  try {
    addr = InetAddress.getByName(uri.getHost());
  } catch (UnknownHostException e) {
    throw new HostNotFoundWrappedException(e);
  }
  byte[] ipAddr = addr.getAddress();

  // Convert to dot representation
  String ipAddrStr = "";
  for (int i = 0; i < ipAddr.length; i++) {
    if (i > 0) {
      ipAddrStr += ".";
    }
    ipAddrStr += ipAddr[i] & 0xFF;
  }

//only select a proxy, if URI starts with 10.*
  if (!ipAddrStr.startsWith("10.")) {
    return ProxySelector.getDefault().select(uri);
  } else {
    proxyList.add(Proxy.NO_PROXY);
  }
  return proxyList;
}

所以我希望这会对你有所帮助。

于 2013-03-27T09:44:37.803 回答
1

刚刚找到这个答案。快速的方法是设置默认系统规划器,如oleg告诉:

HttpClientBuilder getClientBuilder() {
    HttpClientBuilder clientBuilder = HttpClientBuilder.create();
    SystemDefaultRoutePlanner routePlanner = new SystemDefaultRoutePlanner(null);
    clientBuilder.setRoutePlanner(routePlanner);
    return clientBuilder;
}

默认情况下null,arg 将设置为ProxySelector.getDefault()

无论如何,您可以定义和自定义您自己的。这里的另一个例子:EnvBasedProxyRoutePlanner.java (gist)

于 2015-09-18T13:49:46.507 回答