| This class contains a utility method for converting a string to the
format required by the application/x-www-form-urlencoded
MIME content type.
All characters except letters ('a'..'z', 'A'..'Z') and numbers ('0'..'9')
and characters '.', '-', '*', '_' are converted into their hexidecimal
value prepended by '%'.
For example: '#' -> %23
In addition, spaces are substituted by '+'
java.lang.String the string to be converted Parameters: s - java.lang.String the converted string |