java.lang.Object | ||
java.net.URLDecoder |
This class is used to decode a string which is encoded in the
application/x-www-form-urlencoded
MIME content type.
URLDecoder() |
static | String | decode(String s, String enc) | ||||
Decodes the string argument which is assumed to be encoded in the
x-www-form-urlencoded MIME content type using the
specified encoding scheme. |
||||||
static | String | decode(String s) | ||||
This method is deprecated. use decode(String, String) instead |
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 $%"
s | java.lang.String The encoded string. |
---|---|
enc | java.lang.String The encoding scheme to use |
UnsupportedEncodingException |
---|
This method is deprecated. use decode(String, String) instead
Decodes the string argument which is assumed to be encoded in thex-www-form-urlencoded
MIME content type.
'+' 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 $%"
s | java.lang.String The encoded string. |
---|
Copyright 2007 Google Inc. | Build 0.9_r1-98467 - 14 Aug 2008 18:56 |