Converter bean method syntax | Definition |
String encode(String s) | Encodes the string using UTF-8. Returns null if an encoding error occurs. |
String encode(String s, String charset) | Encodes the string using the character set specified in charset. Returns null if an encoding error occurs. |
String decode(String param) | Decodes the query string value (param) using the UTF-8 character set. Returns null if an encoding error occurs. |
String decode(String param, String charset) | Decodes the query string value (param) using the character set specified in charset. Returns null if an encoding error occurs. |