Java org.apache.http.client.utils URLEncodedUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.http.client.utils URLEncodedUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.http.client.utils URLEncodedUtils.

The text is from its open source code.

Field

StringCONTENT_TYPE
The default HTML form content type.

Method

Stringformat(final List parameters, final String charset)
Returns a String that is suitable for use as an application/x-www-form-urlencoded list of parameters in an HTTP PUT or HTTP POST.
Stringformat(final Iterable parameters, final Charset charset)
Returns a String that is suitable for use as an application/x-www-form-urlencoded list of parameters in an HTTP PUT or HTTP POST.
Stringformat(final List parameters, final char parameterSeparator, final String charset)
Returns a String that is suitable for use as an application/x-www-form-urlencoded list of parameters in an HTTP PUT or HTTP POST.
Stringformat(final Iterable parameters, final char parameterSeparator, final Charset charset)
Returns a String that is suitable for use as an application/x-www-form-urlencoded list of parameters in an HTTP PUT or HTTP POST.
booleanisEncoded(final HttpEntity entity)
Returns true if the entity's Content-Type header is application/x-www-form-urlencoded.
Listparse(final URI uri, final String charset)
Returns a list of NameValuePair NameValuePairs as built from the URI's query portion.
Listparse(final String s, final Charset charset)
Returns a list of NameValuePair NameValuePairs as parsed from the given string using the given character encoding.
Listparse(final HttpEntity entity)
Returns a list of NameValuePair NameValuePairs as parsed from an HttpEntity .
voidparse(final List parameters, final Scanner scanner, final String charset)
Adds all parameters within the Scanner to the list of parameters, as encoded by encoding.
Listparse(final String s, final Charset charset, final char... parameterSeparator)
Returns a list of NameValuePair NameValuePairs as parsed from the given string using the given character encoding.