0
我的應用程序使用AsyncHttpClient庫進行網絡操作。我的問題是我需要指定代理端口爲了連接到遠程server.Any想指定它?如何在AsyncHttpClient中設置代理?
我的應用程序使用AsyncHttpClient庫進行網絡操作。我的問題是我需要指定代理端口爲了連接到遠程server.Any想指定它?如何在AsyncHttpClient中設置代理?
嘗試這樣
AsyncHttpClientConfig cf = new DefaultAsyncHttpClientConfig.Builder()
.setProxyServer(new ProxyServer.Builder("127.0.0.1", 38080)).build();
AsyncHttpClient c = new DefaultAsyncHttpClient(cf);
我希望你試過這種http://people.apache.org/~simonetripodi/ahc/proxy.html –