windows设置后String exceptionsList = System.getProperty("http.nonProxyHosts")还是空
时间: 2024-05-16 11:16:49 浏览: 146
Java的System.getProperty()方法获取大全
5星 · 资源好评率100%
如果您在 Windows 上设置了 `http.nonProxyHosts` 环境变量,但是使用 `System.getProperty("http.nonProxyHosts")` 在 Java 中获取到的值为空,可能是因为该环境变量未能成功传递给 Java 程序。
可以尝试在 Java 程序中直接设置该属性,例如:
```
System.setProperty("http.nonProxyHosts", "localhost|127.*|[::1]");
```
这里将 `http.nonProxyHosts` 的值设置为 `localhost|127.*|[::1]`,您可以根据自己的需求修改。设置后,您可以使用 `System.getProperty("http.nonProxyHosts")` 获取到该属性的值。
阅读全文