Class URIUtil
java.lang.Object
org.apache.commons.httpclient.util.URIUtil
Deprecated.
Jakarta Commons HttpClient 3.x is deprecated in the Jenkins project.
It is not recommended to use it in any new code.
Instead, use HTTP client API plugins as a dependency in your code.
E.g.
Apache HttpComponents Client API 4.x Plugin or
Async HTTP Client Plugin.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic StringDeprecated.Unescape and decode a given string regarded as an escaped string with the default protocol charset.static StringDeprecated.Unescape and decode a given string regarded as an escaped string.static StringDeprecated.Escape and encode a given string with allowed characters not to be escaped and the default protocol charset.static StringDeprecated.Escape and encode a given string with allowed characters not to be escaped and a given charset.static StringDeprecated.Get the all escaped and encoded string with the default protocl charset.static StringDeprecated.Get the all escaped and encoded string with a given charset.static StringencodePath(String unescaped) Deprecated.Escape and encode a string regarded as the path component of an URI with the default protocol charset.static StringencodePath(String unescaped, String charset) Deprecated.Escape and encode a string regarded as the path component of an URI with a given charset.static StringencodePathQuery(String unescaped) Deprecated.Escape and encode a string regarded as the path and query components of an URI with the default protocol charset.static StringencodePathQuery(String unescaped, String charset) Deprecated.Escape and encode a string regarded as the path and query components of an URI with a given charset.static StringencodeQuery(String unescaped) Deprecated.Escape and encode a string regarded as the query component of an URI with the default protocol charset.static StringencodeQuery(String unescaped, String charset) Deprecated.Escape and encode a string regarded as the query component of an URI with a given charset.static StringencodeWithinAuthority(String unescaped) Deprecated.Escape and encode a string regarded as within the authority component of an URI with the default protocol charset.static StringencodeWithinAuthority(String unescaped, String charset) Deprecated.Escape and encode a string regarded as within the authority component of an URI with a given charset.static StringencodeWithinPath(String unescaped) Deprecated.Escape and encode a string regarded as within the path component of an URI with the default protocol charset.static StringencodeWithinPath(String unescaped, String charset) Deprecated.Escape and encode a string regarded as within the path component of an URI with a given charset.static StringencodeWithinQuery(String unescaped) Deprecated.Escape and encode a string regarded as within the query component of an URI with the default protocol charset.static StringencodeWithinQuery(String unescaped, String charset) Deprecated.Escape and encode a string regarded as within the query component of an URI with a given charset.static StringgetFromPath(String uri) Deprecated.Get the path of an URI and its rest part.static StringDeprecated.Get the basename of an URI.static StringDeprecated.Get the path of an URI.static StringgetPathQuery(String uri) Deprecated.Get the path and query of an URI.static StringDeprecated.Get the query of an URI.
-
Constructor Details
-
URIUtil
public URIUtil()Deprecated.
-
-
Method Details
-
getName
Deprecated.Get the basename of an URI. It's possibly an empty string.- Parameters:
uri- a string regarded an URI- Returns:
- the basename string; an empty string if the path ends with slash
-
getQuery
Deprecated.Get the query of an URI.- Parameters:
uri- a string regarded an URI- Returns:
- the query string;
nullif empty or undefined
-
getPath
Deprecated.Get the path of an URI.- Parameters:
uri- a string regarded an URI- Returns:
- the path string
-
getPathQuery
Deprecated.Get the path and query of an URI.- Parameters:
uri- a string regarded an URI- Returns:
- the path and query string
-
getFromPath
Deprecated.Get the path of an URI and its rest part.- Parameters:
uri- a string regarded an URI- Returns:
- the string from the path part
-
encodeAll
Deprecated.Get the all escaped and encoded string with the default protocl charset. It's the same function to useencode(String unescaped, Bitset empty, URI.getDefaultProtocolCharset()).- Parameters:
unescaped- an unescaped string- Returns:
- the escaped string
- Throws:
URIException- if the default protocol charset is not supported- See Also:
-
encodeAll
Deprecated.Get the all escaped and encoded string with a given charset. It's the same function to useencode(String unescaped, Bitset empty, String charset).- Parameters:
unescaped- an unescaped stringcharset- the charset- Returns:
- the escaped string
- Throws:
URIException- if the charset is not supported- See Also:
-
encodeWithinAuthority
Deprecated.Escape and encode a string regarded as within the authority component of an URI with the default protocol charset. Within the authority component, the characters ";", ":", "@", "?", and "/" are reserved.- Parameters:
unescaped- an unescaped string- Returns:
- the escaped string
- Throws:
URIException- if the default protocol charset is not supported- See Also:
-
encodeWithinAuthority
Deprecated.Escape and encode a string regarded as within the authority component of an URI with a given charset. Within the authority component, the characters ";", ":", "@", "?", and "/" are reserved.- Parameters:
unescaped- an unescaped stringcharset- the charset- Returns:
- the escaped string
- Throws:
URIException- if the charset is not supported- See Also:
-
encodePathQuery
Deprecated.Escape and encode a string regarded as the path and query components of an URI with the default protocol charset.- Parameters:
unescaped- an unescaped string- Returns:
- the escaped string
- Throws:
URIException- if the default protocol charset is not supported- See Also:
-
encodePathQuery
Deprecated.Escape and encode a string regarded as the path and query components of an URI with a given charset.- Parameters:
unescaped- an unescaped stringcharset- the charset- Returns:
- the escaped string
- Throws:
URIException- if the charset is not supported- See Also:
-
encodeWithinPath
Deprecated.Escape and encode a string regarded as within the path component of an URI with the default protocol charset. The path may consist of a sequence of path segments separated by a single slash "/" character. Within a path segment, the characters "/", ";", "=", and "?" are reserved.- Parameters:
unescaped- an unescaped string- Returns:
- the escaped string
- Throws:
URIException- if the default protocol charset is not supported- See Also:
-
encodeWithinPath
Deprecated.Escape and encode a string regarded as within the path component of an URI with a given charset. The path may consist of a sequence of path segments separated by a single slash "/" character. Within a path segment, the characters "/", ";", "=", and "?" are reserved.- Parameters:
unescaped- an unescaped stringcharset- the charset- Returns:
- the escaped string
- Throws:
URIException- if the charset is not supported- See Also:
-
encodePath
Deprecated.Escape and encode a string regarded as the path component of an URI with the default protocol charset.- Parameters:
unescaped- an unescaped string- Returns:
- the escaped string
- Throws:
URIException- if the default protocol charset is not supported- See Also:
-
encodePath
Deprecated.Escape and encode a string regarded as the path component of an URI with a given charset.- Parameters:
unescaped- an unescaped stringcharset- the charset- Returns:
- the escaped string
- Throws:
URIException- if the charset is not supported- See Also:
-
encodeWithinQuery
Deprecated.Escape and encode a string regarded as within the query component of an URI with the default protocol charset. When a query comprise the name and value pairs, it is used in order to encode each name and value string. The reserved special characters within a query component are being included in encoding the query.- Parameters:
unescaped- an unescaped string- Returns:
- the escaped string
- Throws:
URIException- if the default protocol charset is not supported- See Also:
-
encodeWithinQuery
Deprecated.Escape and encode a string regarded as within the query component of an URI with a given charset. When a query comprise the name and value pairs, it is used in order to encode each name and value string. The reserved special characters within a query component are being included in encoding the query.- Parameters:
unescaped- an unescaped stringcharset- the charset- Returns:
- the escaped string
- Throws:
URIException- if the charset is not supported- See Also:
-
encodeQuery
Deprecated.Escape and encode a string regarded as the query component of an URI with the default protocol charset. When a query string is not misunderstood the reserved special characters ("&", "=", "+", ",", and "$") within a query component, this method is recommended to use in encoding the whole query.- Parameters:
unescaped- an unescaped string- Returns:
- the escaped string
- Throws:
URIException- if the default protocol charset is not supported- See Also:
-
encodeQuery
Deprecated.Escape and encode a string regarded as the query component of an URI with a given charset. When a query string is not misunderstood the reserved special characters ("&", "=", "+", ",", and "$") within a query component, this method is recommended to use in encoding the whole query.- Parameters:
unescaped- an unescaped stringcharset- the charset- Returns:
- the escaped string
- Throws:
URIException- if the charset is not supported- See Also:
-
encode
Deprecated.Escape and encode a given string with allowed characters not to be escaped and the default protocol charset.- Parameters:
unescaped- a stringallowed- allowed characters not to be escaped- Returns:
- the escaped string
- Throws:
URIException- if the default protocol charset is not supported- See Also:
-
encode
Deprecated.Escape and encode a given string with allowed characters not to be escaped and a given charset.- Parameters:
unescaped- a stringallowed- allowed characters not to be escapedcharset- the charset- Returns:
- the escaped string
- Throws:
URIException
-
decode
Deprecated.Unescape and decode a given string regarded as an escaped string with the default protocol charset.- Parameters:
escaped- a string- Returns:
- the unescaped string
- Throws:
URIException- if the string cannot be decoded (invalid)- See Also:
-
decode
Deprecated.Unescape and decode a given string regarded as an escaped string.- Parameters:
escaped- a stringcharset- the charset- Returns:
- the unescaped string
- Throws:
URIException- if the charset is not supported- See Also:
-