Locale-Sensitive Java Method
java.net.URLDecoder
public static String decode(String s)
public static String decode(String s, String enc)
Internationalization (I18n) Method Overview
The decode method decodes a x-www-form-urlencoded string. If the character encoding isn't passed in, the
platform's default character encoding is used, which may not give correct results. It is important to call the method
that takes an encoding parameter and to pass in the correct encoding.
For more information click
here.
Locale-Sensitive Java Methods
|