static Object |
Codecs.chunkedDecode(InputStream input) |
Decodes chunked data.
|
static void |
HTTPConnection.dontProxyFor(String host) |
Add host to the list of hosts which should be accessed directly,
not via any proxy set by setProxyServer().
|
static boolean |
HTTPConnection.doProxyFor(String host) |
Remove host from the list of hosts for which the proxy should
not be used.
|
static String |
Util.getParameter(String param,
String hdr) |
retrieves the value associated with the parameter param in a
given header string.
|
String |
HTTPResponse.getText() |
Reads all the response data into a buffer and turns it into a string using
the appropriate character converter.
|
static boolean |
Util.hasToken(String header,
String token) |
Determines if the given header contains a certain token.
|
static NVPair[] |
Codecs.mpFormDataDecode(byte[] data,
String cont_type,
String dir) |
This method decodes a multipart/form-data encoded string.
|
static NVPair[] |
Codecs.mpFormDataDecode(byte[] data,
String cont_type,
String dir,
FilenameMangler mangler) |
This method decodes a multipart/form-data encoded string.
|
static Vector |
Util.parseHeader(String header) |
This parses the value part of a header.
|
static Vector |
Util.parseHeader(String header,
boolean dequote) |
This parses the value part of a header.
|
static NVPair[] |
Codecs.query2nv(String query) |
Turns a string of the form "name1=value1&name2=value2&name3=value3" into an
array of name/value pairs.
|
static String |
Codecs.quotedPrintableDecode(String str) |
This method does a quoted-printable decoding of the given string according
to RFC-2045 (Section 6.7).
|
static String |
URI.unescape(String str,
BitSet reserved) |
Unescape escaped characters (i.e.
|
static String |
Codecs.URLDecode(String str) |
This method decodes the given urlencoded string.
|