public class FormUrlDecoder
extends java.lang.Object
UriParameterMap.parse(String,java.nio.charset.Charset)
Utility for parsing application/x-www-form-urlencoded content as
sent by user agents in the query string of GET form submissions and
the body of POST form submissions.Modifier and Type | Class and Description |
---|---|
static interface |
FormUrlDecoder.Callback
Deprecated.
Do not use. (Currently only needed internally by
UriParameterMap.)
|
Modifier and Type | Method and Description |
---|---|
static ParamMap |
parse(java.lang.String str,
ParamMap map,
java.lang.String encoding)
Deprecated.
Use
UriParameterMap.parse(query, encoding) . To convert
from the string to the Charset instance, see
Charsets . Note that an encoding of null
will default to ISO-8859-1 in this deprecated implementation, whereas the
classes in common.net default to UTF-8 encoding. |
static void |
parseWithCallback(java.lang.String str,
java.lang.String encoding,
FormUrlDecoder.Callback callback)
Deprecated.
Do not use. (Currently only needed internally by
UriParameterMap.)
|
@Deprecated public static void parseWithCallback(java.lang.String str, java.lang.String encoding, FormUrlDecoder.Callback callback)
@Deprecated public static ParamMap parse(java.lang.String str, ParamMap map, java.lang.String encoding)
UriParameterMap.parse(query, encoding)
. To convert
from the string to the Charset
instance, see
Charsets
. Note that an encoding of null
will default to ISO-8859-1 in this deprecated implementation, whereas the
classes in common.net default to UTF-8 encoding.