字典code解码失败,可能是使用了非法字符,请检查! #5655

pull/5673/merge
zhangdaiscott 2023-12-12 10:50:42 +08:00
parent 2dfc06c679
commit 4cbe9cad8e
1 changed files with 2 additions and 2 deletions

View File

@ -100,8 +100,8 @@ public class DictTableWhiteListHandlerImpl implements IDictTableWhiteListHandler
// 针对转义字符进行解码 // 针对转义字符进行解码
dictCodeString = URLDecoder.decode(dictCodeString, "UTF-8"); dictCodeString = URLDecoder.decode(dictCodeString, "UTF-8");
} catch (Exception e) { } catch (Exception e) {
log.error(e.getMessage(), e); log.warn(e.getMessage());
this.throwException("字典code解码失败可能是使用了非法字符请检查"); //this.throwException("字典code解码失败可能是使用了非法字符请检查");
} }
dictCodeString = dictCodeString.trim(); dictCodeString = dictCodeString.trim();
String[] arr = dictCodeString.split(SymbolConstant.COMMA); String[] arr = dictCodeString.split(SymbolConstant.COMMA);