...
|
...
|
@@ -71,7 +71,7 @@ public class HttpUtils { |
|
|
for (Entry<String, Object> entry : param.entrySet()) {
|
|
|
log.debug("请求参数 --> " + entry.getKey() + "=" + entry.getValue());
|
|
|
if (entry.getKey() == null || entry.getValue() == null) {
|
|
|
throw new Exception("键值不能为null" + entry.getKey() + "=" + entry.getValue());
|
|
|
continue;
|
|
|
}
|
|
|
list.add(new BasicNameValuePair(entry.getKey(), String.valueOf(entry.getValue())));
|
|
|
}
|
...
|
...
|
|