Java org.apache.http.client.entity UrlEncodedFormEntity fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Constructor

UrlEncodedFormEntity(final List parameters)
Constructs a new UrlEncodedFormEntity with the list of parameters with the default encoding of HTTP#DEFAULT_CONTENT_CHARSET
UrlEncodedFormEntity(final Iterable parameters)
Constructs a new UrlEncodedFormEntity with the list of parameters with the default encoding of HTTP#DEFAULT_CONTENT_CHARSET
UrlEncodedFormEntity(final List parameters, final String charset)
Constructs a new UrlEncodedFormEntity with the list of parameters in the specified encoding.
UrlEncodedFormEntity(final Iterable parameters, final Charset charset)
Constructs a new UrlEncodedFormEntity with the list of parameters in the specified encoding.

Method