org.apache.commons.httpclient.util
public class ParameterParser extends Object
param1 = value; param2 = "anything goes; really"; param3
Since: 3.0
Constructor Summary | |
---|---|
ParameterParser() Default ParameterParser constructor |
Method Summary | |
---|---|
List | parse(String str, char separator)
Extracts a list of NameValuePairs from the given string.
|
List | parse(char[] chars, char separator)
Extracts a list of NameValuePairs from the given array of
characters.
|
List | parse(char[] chars, int offset, int length, char separator)
Extracts a list of NameValuePairs from the given array of
characters.
|
Parameters: str the string that contains a sequence of name/value pairs
Returns: a list of NameValuePairs
Parameters: chars the array of characters that contains a sequence of name/value pairs
Returns: a list of NameValuePairs
Parameters: chars the array of characters that contains a sequence of name/value pairs offset - the initial offset. length - the length.
Returns: a list of NameValuePairs