Java获取系统配置的nonProxyHost配置到全局
时间: 2024-05-06 10:18:27 浏览: 130
可以使用以下代码来获取系统配置的 nonProxyHosts 配置,并将其设置为全局的系统属性:
```
String nonProxyHosts = System.getProperty("http.nonProxyHosts");
if (nonProxyHosts != null && !nonProxyHosts.isEmpty()) {
System.setProperty("http.nonProxyHosts", nonProxyHosts);
}
```
这段代码首先获取了系统属性中的 nonProxyHosts 配置,如果该配置存在则将其设置为全局的系统属性。这样就可以确保 Java 在使用 HTTP 连接时会遵循系统的 nonProxyHosts 配置。
阅读全文