public class URICoder extends Object
unreserved = ALPHA / DIGIT / '-' / '.' / '_' / '˜';This encoder/decoder should be designed so that URI which contain only unreserved characters are processed faster.
| Modifier and Type | Method and Description |
|---|---|
static String |
decode(String s)
Decode the string as valid URI fragment.
|
static String |
encode(String s)
Encodes the string as valid URI fragment.
|
static String |
encode(String s,
char c) |
static String |
encode(String s,
Set<Character> chars)
Encodes the string as valid URI fragment.
|
static String |
minimalEncode(String s)
Encodes the string as valid URI fragment.
|
public static String encode(String s)
s - The string to encode.public static String encode(String s, Set<Character> chars)
s - The string to encode.chars - An ASCII set of characters that should not be encoded if found in the string.public static String minimalEncode(String s)
s - The string to encode.Copyright © 2021. All rights reserved.