Decodes the string argument which is assumed to be encoded in the
x-www-form-urlencoded MIME content type using the
specified encoding scheme.
'+' will be converted to space, '%' and two following hex digit
characters are converted to the equivalent byte value. All other
characters are passed through unmodified.
e.g. "A+B+C %24%25" -> "A B C $%"
Parameters: s - java.lang.String The encoded string. Parameters: enc - java.lang.String The encoding scheme to use java.lang.String The decoded version. |