URLDecoder: Illegal hex characters in escape (%) pattern - For input string: "6#" 解决方法

系统一个运行错误,URLDecoder: Illegal hex characters in escape (%) pattern - For inputstring: "6#" ;

跟踪发现是URLDecoder.decode抛出的,输入字符串为:KJis%6#sIx,

%为不安全字符,可以用%25代替.这样就好了

参考文档:

https://stackoverflow.com/questions/11257509/urldecoder-illegal-hex-characters-in-escape-pattern-for-input-string-p

http://blog.csdn.net/mr_pang/article/details/47060087

 

检查代码发现 URLDecoder.decode这段代码根本不需要,垃圾代码引起的问题。

猜你喜欢

转载自blog.csdn.net/wh_xia_jun/article/details/77506350
今日推荐