如何在不具有系统属性的Java URL连接中设置http.nonProxyHosts?

时间:2018-07-25 05:51:53

标签: java httpurlconnection urlconnection

我具有系统属性,可以排除不使用代理的主机。是否可以在不设置系统属性的情况下进行设置?

1 个答案:

答案 0 :(得分:0)

是的,您创建了一个java.net.Proxy ](https://docs.oracle.com/javase/8/docs/api/java/net/Proxy.html), and then use [ URL.openConnection(Proxy)](https://docs.oracle.com/javase/8/docs/api/java/net/URL.html#openConnection-java.net.Proxy-) for the cases when you need one, and Proxy.NONE`。