有没有可能使用这里描述的 Netty:http: //docs.oracle.com/javase/6/docs/technotes/guides/net/proxies.html
也许有一些选择,例如:
System.getProperties().put("socksProxySet","true");
System.getProperties().put("socksProxyHost","127.0.0.1");
System.getProperties().put("socksProxyPort","1080");
我试过了,但 netty 不接受属性,也不通过 socks 代理代理请求。
ChannelFuture future =
bootstrap.connect(
new InetSocketAddress(uri.getHost(), uri.getPort()));
我的 netty 客户端通过 websockets 连接到 netty 服务器。
Java NIO 不支持代理。Netty 基于 Java NIO。我只是希望这种可能性存在/可以添加到netty。
谢谢!