Java org.apache.commons.httpclient.util URIUtil fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.httpclient.util URIUtil fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.httpclient.util URIUtil.

The text is from its open source code.

Method

Stringdecode(String escaped)
Unescape and decode a given string regarded as an escaped string with the default protocol charset.
Stringdecode(String escaped, String charset)
Unescape and decode a given string regarded as an escaped string.
Stringencode(String unescaped, BitSet allowed)
Escape and encode a given string with allowed characters not to be escaped and the default protocol charset.
Stringencode(String unescaped, BitSet allowed, String charset)
Escape and encode a given string with allowed characters not to be escaped and a given charset.
StringencodeAll(String unescaped)
Get the all escaped and encoded string with the default protocl charset.
StringencodePath(String unescaped)
Escape and encode a string regarded as the path component of an URI with the default protocol charset.
StringencodePath(String unescaped, String charset)
Escape and encode a string regarded as the path component of an URI with a given charset.
StringencodePathQuery(String unescaped, String charset)
Escape and encode a string regarded as the path and query components of an URI with a given charset.
StringencodePathQuery(String unescaped)
Escape and encode a string regarded as the path and query components of an URI with the default protocol charset.
StringencodeQuery(String unescaped)
Escape and encode a string regarded as the query component of an URI with the default protocol charset.
StringencodeQuery(String unescaped, String charset)
Escape and encode a string regarded as the query component of an URI with a given charset.
StringencodeWithinAuthority(String unescaped)
Escape and encode a string regarded as within the authority component of an URI with the default protocol charset.
StringencodeWithinPath(String unescaped, String charset)
Escape and encode a string regarded as within the path component of an URI with a given charset.
StringencodeWithinPath(String unescaped)
Escape and encode a string regarded as within the path component of an URI with the default protocol charset.
StringencodeWithinQuery(String unescaped)
Escape and encode a string regarded as within the query component of an URI with the default protocol charset.
StringencodeWithinQuery(String unescaped, String charset)
Escape and encode a string regarded as within the query component of an URI with a given charset.
StringgetName(String uri)
Get the basename of an URI.
StringgetPath(String uri)
Get the path of an URI.
StringgetPathQuery(String uri)
Get the path and query of an URI.
StringgetQuery(String uri)
Get the query of an URI.