在我的理解中,默认浏览器使用三个字节/字符对保留字符和
非字母数字字符进行编码:
`%HH', a percent sign and two hexadecimal
digits representing the ASCII code of the character.
因此,在服务器端,可以说 queryString是解码前的查询字符串,并且:
decodedQueryString = URLDecoder.decode(queryString , "Utf-8");
此时表达式的值:
decodedQueryString.length() < queryString.length();
通常应该是真的,对吗?