Java org.springframework.web.util UriUtils fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.util UriUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.util UriUtils.

The text is from its open source code.

Method

Stringdecode(String source, String encoding)
Decode the given encoded URI component.
Stringdecode(String source, Charset charset)
Decode the given encoded URI component.
Stringencode(String source, String encoding)
Variant of #encode(String,Charset) with a String charset.
Stringencode(String source, Charset charset)
Encode all characters that are either illegal, or have any reserved meaning, anywhere within a URI, as defined in RFC 3986.
StringencodeFragment(String fragment, String encoding)
Encode the given URI fragment with the given encoding.
StringencodeFragment(String fragment, Charset charset)
Encode the given URI fragment with the given encoding.
StringencodePath(String path, String encoding)
Encode the given URI path with the given encoding.
StringencodePath(String path, Charset charset)
Encode the given URI path with the given encoding.
StringencodePathSegment(String segment, String encoding)
Encode the given URI path segment with the given encoding.
StringencodePathSegment(String segment, Charset charset)
Encode the given URI path segment with the given encoding.
StringencodeQuery(String query, String encoding)
Encode the given URI query with the given encoding.
StringencodeQuery(String query, Charset charset)
Encode the given URI query with the given encoding.
StringencodeQueryParam(String queryParam, String encoding)
Encode the given URI query parameter with the given encoding.
StringencodeQueryParam(String queryParam, Charset charset)
Encode the given URI query parameter with the given encoding.
StringencodeScheme(String scheme, String encoding)
Encode the given URI scheme with the given encoding.
StringencodeScheme(String scheme, Charset charset)
Encode the given URI scheme with the given encoding.
StringextractFileExtension(String path)
Extract the file extension from the given URI path.