String exceptionsList = System.getProperty("http.nonProxyHosts");获取不到
时间: 2024-05-04 11:19:51 浏览: 180
Java的System.getProperty()方法获取大全
5星 · 资源好评率100%
如果你的代码中使用 `System.getProperty("http.nonProxyHosts")` 方法获取不到数据,可能是因为该系统属性未被设置。你可以先检查一下该属性是否已经被设置,可以使用以下代码进行检查:
```
String exceptionsList = System.getProperty("http.nonProxyHosts");
if (exceptionsList == null) {
System.out.println("http.nonProxyHosts is not set");
} else {
System.out.println("http.nonProxyHosts is set to " + exceptionsList);
}
```
如果该属性确实未被设置,你可以通过以下方式设置该属性:
```
System.setProperty("http.nonProxyHosts", "localhost|127.0.0.1");
```
这样就可以将非代理主机设置为 localhost 和 127.0.0.1。你可以根据自己的需求修改这个字符串。
阅读全文