Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Class java.net.URLEncoder

java.lang.Object
   |
   +----java.net.URLEncoder

public class URLEncoder
extends Object

The class contains a utility method for converting a String into a MIME format called "x-www-form-urlencoded" format.

To convert a String, each character is examined in turn:


Method Index

encode(String)
Translates a string into x-www-form-urlencoded format.

Methods

encode
 public static String encode(String s)
Translates a string into x-www-form-urlencoded format.

Parameters:
s - String to be translated.
Returns:
the translated String.

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)