MCPcopy Index your code
hub / github.com/apache/tomcat / URLDecode

Method URLDecode

java/org/apache/tomcat/util/buf/UDecoder.java:224–226  ·  view source on GitHub ↗

Decode and return the specified URL-encoded String. It is assumed the string is not a query string. @param str The url-encoded string @param charset The character encoding to use; if null, UTF-8 is used. @return the decoded string @exception IllegalArgumentException if a '%' character is not

(String str, Charset charset)

Source from the content-addressed store, hash-verified

222 * @exception IllegalArgumentException if a '%' character is not followed by a valid 2-digit hexadecimal number
223 */
224 public static String URLDecode(String str, Charset charset) {
225 return URLDecode(str, charset, EncodedSolidusHandling.DECODE, EncodedSolidusHandling.DECODE);
226 }
227
228
229 /**

Calls 10

isHexDigitMethod · 0.95
x2cMethod · 0.95
writeMethod · 0.95
lengthMethod · 0.80
toCharArrayMethod · 0.80
flushMethod · 0.65
getStringMethod · 0.65
toStringMethod · 0.65
indexOfMethod · 0.45
appendMethod · 0.45