java.lang.IllegalArgumentException: host parameter is null
时间: 2023-12-08 18:39:12 浏览: 229
java.lang.Exception: java.lang.IllegalArgumentException: firstMovedIndex, lastMo
5星 · 资源好评率100%
java.lang.IllegalArgumentException: host parameter is null异常通常是由于在使用HttpClient发送请求时,未正确设置请求的URL导致的。在你提供的代码中,url变量的值缺少了冒号,应该修改为"http://xxxx:8080/xxxx"。修改后的代码如下所示:
```java
private PostMethod post = null;
String url = "http://xxxx:8080/xxxx";
HttpClient client = new HttpClient();
if (type == 1){
post = new PostMethod(url);
}
```
阅读全文