URLDecode.decode 方法在 Java 中未按预期工作

URLDecode.decode method not working as expected in Java

我试图解码 URL 编码的 post 正文并遇到了这个问题。

我正在使用这种方法解码(它也解码多个编码的 urls):

public static String decodeUrl(String url)
    {
        try {
            String prevURL="";
            String decodeURL=url;
            while(!prevURL.equals(decodeURL))
            {
                prevURL=decodeURL;
                decodeURL= URLDecoder.decode( decodeURL, "UTF-8" );
            }
            return decodeURL;
        } catch (UnsupportedEncodingException e) {
            return "Issue while decoding" +e.getMessage();
        }
    }

当输入 url 为 "a%20%2B%20b%20%3D%3D%2013%25!" 时,控件在调试时以某种方式不显示在行 decodeURL = 之后。也没有引发异常。

问题是控制没有超出线"decodeURL" .

可能是什么导致了这个问题?请使用调试器模拟这个问题。

刚刚在 Java 8u151 上测试过。这会在循环的第二次旋转时抛出 IllegalArgumentException:"URLDecoder: Incomplete trailing escape (%) pattern"。那是因为在第一次解码后你有 "a + b == 13%!",而在第二次解码期间 % 应该引入一个编码序列但它没有。我认为这是预期的行为,即使其他语言的标准库不同意。 Python 3.6 例如:

>>> from urllib.parse import unquote
>>> result = unquote('a%20%2B%20b%20%3D%3D%2013%25!')
>>> result
'a + b == 13%!'
>>> unquote(result)
'a + b == 13%!'