Commit 3084a7c1 authored by 赵啸非's avatar 赵啸非

修改配置文件

parent f219ff12
...@@ -233,7 +233,6 @@ public class ProxyController { ...@@ -233,7 +233,6 @@ public class ProxyController {
for (String key : bodyParams.keySet()) { for (String key : bodyParams.keySet()) {
if (!TextUtils.isEmpty(key) && !TextUtils.isEmpty(bodyParams.get(key))) { if (!TextUtils.isEmpty(key) && !TextUtils.isEmpty(bodyParams.get(key))) {
//如果参数不是null并且不是"",就拼接起来 //如果参数不是null并且不是"",就拼接起来
stringBuffer.append("&");
stringBuffer.append(key); stringBuffer.append(key);
stringBuffer.append("="); stringBuffer.append("=");
stringBuffer.append(bodyParams.get(key)); stringBuffer.append(bodyParams.get(key));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment