Map implementation Optimized for Strings keys..
This String Map has been optimized for mapping small sets of
Strings where the most frequently accessed Strings have been put to
the map first.
It also has the benefit that it can look up entries by substring or
sections of char and byte arrays.
URI Holder.
This class assists with the decoding and encoding or HTTP URI's.
It differs from the java.net.URL class as it does not provide
communications ability, but it does assist with query string
formatting.
UTF-8 encoding is used by default for % encoded characters.
Handles coding of MIME "x-www-form-urlencoded".
This class handles the encoding and decoding for either
the query string of a URL or the _content of a POST HTTP request.
Notes
The hashtable either contains String single values, vectors
of String or arrays of Strings.
This class is only partially synchronised.