Team LiB
Previous Section Next Section

URLDecoderjava.net

Java 1.2

This class defines a static decode( ) method that reverses the encoding performed by URLEncoder.encode( ). It decodes 8-bit text with the MIME type "x-www-form-urlencoded", which is a standard encoding used by web browsers to submit form contents to CGI scripts and other server-side programs.

public class URLDecoder {
// Public Constructors
     public URLDecoder( );  
// Public Class Methods
1.4  public static String decode(String s, String enc) 
throws java.io.UnsupportedEncodingException;  
// Deprecated Public Methods
#    public static String decode(String s);  
}

    Team LiB
    Previous Section Next Section