/** * Constructs a new {@link UrlEncodedFormEntity} with the list * of parameters with the default encoding of {@link HTTP#DEFAULT_CONTENT_CHARSET} * * @param parameters list of name/value pairs * @throws UnsupportedEncodingException if the default encoding isn't supported */ publicUrlEncodedFormEntity( final List <? extends NameValuePair> parameters)throws UnsupportedEncodingException { this(parameters, (Charset) null); }