我可以通过如下代码设置 socks 代理服务器:
System.getProperties().setProperty("socksProxySet", "true");
System.getProperties().setProperty("socksProxyHost", address);
System.getProperties().setProperty("socksProxyPort", port);
根据http://docs.oracle.com/javase/6/docs/technotes/guides/net/proxies.html,我可以像这样取消设置 HTTP、HTTPS 和 FTP 代理:
System.setProperty("http.proxyHost", null);
问题:我也可以取消设置 socks 代理吗?
通过做:
System.getProperties().setProperty("socksProxyHost", null);
除了 NullPointerException 我什么都没有...
泰