| 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.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
|
||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
Decodes the argument which is assumed to be encoded in the
x-www-form-urlencoded
MIME content type, assuming the given
charsetName
.
|
||||||||||
|
|
This method was deprecated
in API level 1.
Use
decode(String, String)
instead.
|
||||||||||
|
[Expand]
Inherited Methods
|
|||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
|||||||||||
Decodes the argument which is assumed to be encoded in the
x-www-form-urlencoded
MIME content type, assuming the given
charsetName
.
'
+' 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. For example "A+B+C %24%25" -> "A B C $%".
| UnsupportedEncodingException |
if
charsetName
is not supported.
|
|---|
This method was deprecated
in API level 1.
Use
decode(String, String)
instead.
Decodes the argument which is assumed to be encoded in the
x-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. For example "A+B+C %24%25" -> "A B C $%".
| s | the encoded string. |
|---|