All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----java.net.URLEncoder
String into a MIME format called "x-www-form-urlencoded" format. To convert a String, each character is examined in turn:
a' through 'z', 'A' through 'Z', and '0' through '9' remain the same. ' is converted into a plus sign '+'. %xy", where xy is the two-digit hexadecimal representation of the lower 8-bits of the character. x-www-form-urlencoded format. public static String encode(String s)
x-www-form-urlencoded format. String to be translated. String. All Packages Class Hierarchy This Package Previous Next Index