public final class URLEncoder extends Object implements Cloneable
Modifier and Type | Field and Description |
---|---|
static URLEncoder |
DEFAULT |
static URLEncoder |
QUERY |
Constructor and Description |
---|
URLEncoder() |
Modifier and Type | Method and Description |
---|---|
void |
addSafeCharacter(char c) |
Object |
clone() |
String |
encode(String path)
Deprecated.
|
String |
encode(String path,
Charset charset)
URL encodes the provided path using the given character set.
|
String |
encode(String path,
String encoding)
Deprecated.
This will be removed in Tomcat 9.0.x
|
void |
removeSafeCharacter(char c) |
void |
setEncodeSpaceAsPlus(boolean encodeSpaceAsPlus) |
public static final URLEncoder DEFAULT
public static final URLEncoder QUERY
public void addSafeCharacter(char c)
public void removeSafeCharacter(char c)
public void setEncodeSpaceAsPlus(boolean encodeSpaceAsPlus)
@Deprecated public String encode(String path)
encode(String, String)
path
- The path to encode@Deprecated public String encode(String path, String encoding)
path
- The path to encodeencoding
- The encoding to use to convert the path to bytespublic String encode(String path, Charset charset)
path
- The path to encodecharset
- The character set to use to convert the path to bytesCopyright © 2000-2020 Apache Software Foundation. All Rights Reserved.