|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ParseException | |
HTTPClient | This package provides a complete http client library. |
Uses of ParseException in HTTPClient |
Methods in HTTPClient that throw ParseException | |
java.lang.String |
HTTPResponse.getText()
Reads all the response data into a buffer and turns it into a string using the appropriate character converter. |
static java.lang.String |
URI.unescape(java.lang.String str,
java.util.BitSet reserved)
Unescape escaped characters (i.e. |
static void |
HTTPConnection.dontProxyFor(java.lang.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(java.lang.String host)
Remove host from the list of hosts for which the proxy should not be used. |
static java.lang.String |
Codecs.quotedPrintableDecode(java.lang.String str)
This method does a quoted-printable decoding of the given string according to RFC-2045 (Section 6.7). |
static java.lang.String |
Codecs.URLDecode(java.lang.String str)
This method decodes the given urlencoded string. |
static NVPair[] |
Codecs.mpFormDataDecode(byte[] data,
java.lang.String cont_type,
java.lang.String dir)
This method decodes a multipart/form-data encoded string. |
static NVPair[] |
Codecs.mpFormDataDecode(byte[] data,
java.lang.String cont_type,
java.lang.String dir,
FilenameMangler mangler)
This method decodes a multipart/form-data encoded string. |
static NVPair[] |
Codecs.query2nv(java.lang.String query)
Turns a string of the form "name1=value1&name2=value2&name3=value3" into an array of name/value pairs. |
static java.lang.Object |
Codecs.chunkedDecode(java.io.InputStream input)
Decodes chunked data. |
static java.util.Vector |
Util.parseHeader(java.lang.String header)
This parses the value part of a header. |
static java.util.Vector |
Util.parseHeader(java.lang.String header,
boolean dequote)
This parses the value part of a header. |
static boolean |
Util.hasToken(java.lang.String header,
java.lang.String token)
Determines if the given header contains a certain token. |
static java.lang.String |
Util.getParameter(java.lang.String param,
java.lang.String hdr)
retrieves the value associated with the parameter param in a given header string. |
Constructors in HTTPClient that throw ParseException | |
URI(java.lang.String uri)
Constructs a URI from the given string representation. |
|
URI(URI base,
java.lang.String rel_uri)
Constructs a URI from the given string representation, relative to the given base URI. |
|
URI(java.net.URL url)
Construct a URI from the given URL. |
|
URI(java.lang.String scheme,
java.lang.String host,
java.lang.String path)
Constructs a URI from the given parts, using the default port for this scheme (if known). |
|
URI(java.lang.String scheme,
java.lang.String host,
int port,
java.lang.String path)
Constructs a URI from the given parts. |
|
URI(java.lang.String scheme,
java.lang.String userinfo,
java.lang.String host,
int port,
java.lang.String path,
java.lang.String query,
java.lang.String fragment)
Constructs a URI from the given parts. |
|
URI(java.lang.String scheme,
java.lang.String opaque)
Constructs an opaque URI from the given parts. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |