generated from dxfeng/secondev-chapanda-feishu
BUG修复
This commit is contained in:
parent
79321921fa
commit
007fb077dd
|
|
@ -39,9 +39,11 @@ public class RecruitFlowUtil {
|
|||
String[] paramPairs = urlString.split("&");
|
||||
for (String paramPair : paramPairs) {
|
||||
String[] keyValue = paramPair.split("=");
|
||||
String key = URLDecoder.decode(keyValue[0], "UTF-8");
|
||||
String value = URLDecoder.decode(keyValue[1], "UTF-8");
|
||||
params.put(key, value);
|
||||
if (keyValue.length == 2) {
|
||||
String key = URLDecoder.decode(keyValue[0], "UTF-8");
|
||||
String value = URLDecoder.decode(keyValue[1], "UTF-8");
|
||||
params.put(key, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (Exception e) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue