URLDecoder: Illegal hex characters in escape (%) pattern - For input string

Posted jarjune

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了URLDecoder: Illegal hex characters in escape (%) pattern - For input string相关的知识,希望对你有一定的参考价值。

原因:后台发布文章的时候,内容里面有%,导致后台URLDecoder.decode()转码的时候报错。

看了java.net.URLDecoderdecode()的源码,原来是转码错误。

贴出部分代码,意思是取%后面的两位,从16进制转成10进制,要是转码错误就会报出这个异常。

while ( ((i+2) < numChars) && (c==‘%‘)) {
    int v = Integer.parseInt(s.substring(i+1,i+3),16);
    if (v < 0)
        throw new IllegalArgumentException("URLDecoder: Illegal hex characters in escape (%) pattern - negative value");
    bytes[pos++] = (byte) v;
    i+= 3;
    if (i < numChars)
    c = s.charAt(i);
}

以上是关于URLDecoder: Illegal hex characters in escape (%) pattern - For input string的主要内容,如果未能解决你的问题,请参考以下文章

C语言local function definitions are illegal

Uncaught SyntaxError Unexpected token ILLEGAL

C - error: converting to execution character set:Illegal byte sequence

异常Exception in thread "main" java.lang.IllegalArgumentException: Illegal pattern c

微信扫码登录时,报AuthException: Illegal redirect uri [WECHAT_OPEN]解决方法

微信扫码登录时,报AuthException: Illegal redirect uri [WECHAT_OPEN]解决方法