March 2005
Beginner to intermediate
1254 pages
104h 21m
English
URLDecoder
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); }
Read now
Unlock full access