public abstract class UriUtils extends Object
All encode*(String, String
methods in this class operate in a similar way:
%<i>xy</i>
"
format.Constructor and Description |
---|
UriUtils() |
Modifier and Type | Method and Description |
---|---|
static String |
decode(String source,
String encoding)
Decodes the given encoded source String into an URI.
|
static String |
encodeAuthority(String authority,
String encoding)
Encodes the given URI authority with the given encoding.
|
static String |
encodeFragment(String fragment,
String encoding)
Encodes the given URI fragment with the given encoding.
|
static String |
encodeHost(String host,
String encoding)
Encodes the given URI host with the given encoding.
|
static String |
encodeHttpUrl(String httpUrl,
String encoding)
Deprecated.
in favor of
UriComponentsBuilder ; see note about query param encoding |
static String |
encodePath(String path,
String encoding)
Encodes the given URI path with the given encoding.
|
static String |
encodePathSegment(String segment,
String encoding)
Encodes the given URI path segment with the given encoding.
|
static String |
encodePort(String port,
String encoding)
Encodes the given URI port with the given encoding.
|
static String |
encodeQuery(String query,
String encoding)
Encodes the given URI query with the given encoding.
|
static String |
encodeQueryParam(String queryParam,
String encoding)
Encodes the given URI query parameter with the given encoding.
|
static String |
encodeScheme(String scheme,
String encoding)
Encodes the given URI scheme with the given encoding.
|
static String |
encodeUri(String uri,
String encoding)
Deprecated.
in favor of
UriComponentsBuilder ; see note about query param encoding |
static String |
encodeUriComponents(String scheme,
String authority,
String userInfo,
String host,
String port,
String path,
String query,
String fragment,
String encoding)
Deprecated.
in favor of
UriComponentsBuilder |
static String |
encodeUserInfo(String userInfo,
String encoding)
Encodes the given URI user info with the given encoding.
|
@Deprecated public static String encodeUri(String uri, String encoding) throws UnsupportedEncodingException
UriComponentsBuilder
; see note about query param encodingNote that this method does not attempt to encode "=" and "&" characters in query parameter names and query parameter values because they cannot be parsed in a reliable way. Instead use:
UriComponents uriComponents = UriComponentsBuilder.fromUri("/path?name={value}").buildAndExpand("a=b"); String encodedUri = uriComponents.encode().toUriString();
uri
- the URI to be encodedencoding
- the character encoding to encode toIllegalArgumentException
- when the given uri parameter is not a valid URIUnsupportedEncodingException
- when the given encoding parameter is not supported@Deprecated public static String encodeHttpUrl(String httpUrl, String encoding) throws UnsupportedEncodingException
UriComponentsBuilder
; see note about query param encodingNote that this method does not support fragments (#
),
as these are not supposed to be sent to the server, but retained by the client.
Note that this method does not attempt to encode "=" and "&" characters in query parameter names and query parameter values because they cannot be parsed in a reliable way. Instead use:
UriComponents uriComponents = UriComponentsBuilder.fromHttpUrl("/path?name={value}").buildAndExpand("a=b"); String encodedUri = uriComponents.encode().toUriString();
httpUrl
- the HTTP URL to be encodedencoding
- the character encoding to encode toIllegalArgumentException
- when the given uri parameter is not a valid URIUnsupportedEncodingException
- when the given encoding parameter is not supported@Deprecated public static String encodeUriComponents(String scheme, String authority, String userInfo, String host, String port, String path, String query, String fragment, String encoding) throws UnsupportedEncodingException
UriComponentsBuilder
scheme
- the schemeauthority
- the authorityuserInfo
- the user infohost
- the hostport
- the portpath
- the pathquery
- the queryfragment
- the fragmentencoding
- the character encoding to encode toIllegalArgumentException
- when the given uri parameter is not a valid URIUnsupportedEncodingException
- when the given encoding parameter is not supportedpublic static String encodeScheme(String scheme, String encoding) throws UnsupportedEncodingException
scheme
- the scheme to be encodedencoding
- the character encoding to encode toUnsupportedEncodingException
- when the given encoding parameter is not supportedpublic static String encodeAuthority(String authority, String encoding) throws UnsupportedEncodingException
authority
- the authority to be encodedencoding
- the character encoding to encode toUnsupportedEncodingException
- when the given encoding parameter is not supportedpublic static String encodeUserInfo(String userInfo, String encoding) throws UnsupportedEncodingException
userInfo
- the user info to be encodedencoding
- the character encoding to encode toUnsupportedEncodingException
- when the given encoding parameter is not supportedpublic static String encodeHost(String host, String encoding) throws UnsupportedEncodingException
host
- the host to be encodedencoding
- the character encoding to encode toUnsupportedEncodingException
- when the given encoding parameter is not supportedpublic static String encodePort(String port, String encoding) throws UnsupportedEncodingException
port
- the port to be encodedencoding
- the character encoding to encode toUnsupportedEncodingException
- when the given encoding parameter is not supportedpublic static String encodePath(String path, String encoding) throws UnsupportedEncodingException
path
- the path to be encodedencoding
- the character encoding to encode toUnsupportedEncodingException
- when the given encoding parameter is not supportedpublic static String encodePathSegment(String segment, String encoding) throws UnsupportedEncodingException
segment
- the segment to be encodedencoding
- the character encoding to encode toUnsupportedEncodingException
- when the given encoding parameter is not supportedpublic static String encodeQuery(String query, String encoding) throws UnsupportedEncodingException
query
- the query to be encodedencoding
- the character encoding to encode toUnsupportedEncodingException
- when the given encoding parameter is not supportedpublic static String encodeQueryParam(String queryParam, String encoding) throws UnsupportedEncodingException
queryParam
- the query parameter to be encodedencoding
- the character encoding to encode toUnsupportedEncodingException
- when the given encoding parameter is not supportedpublic static String encodeFragment(String fragment, String encoding) throws UnsupportedEncodingException
fragment
- the fragment to be encodedencoding
- the character encoding to encode toUnsupportedEncodingException
- when the given encoding parameter is not supportedpublic static String decode(String source, String encoding) throws UnsupportedEncodingException
"a"
through "z"
, "A"
through "Z"
, and
"0"
through "9"
stay the same."-"
, "_"
, "."
, and "*"
stay the same.%<i>xy</i>
" is interpreted as a hexadecimal representation of the character.source
- the source stringencoding
- the encodingIllegalArgumentException
- when the given source contains invalid encoded sequencesUnsupportedEncodingException
- when the given encoding parameter is not supportedURLDecoder.decode(String, String)