public class

FormUrlDecoder

extends Object
java.lang.Object
   ↳ com.google.gdata.util.httputil.FormUrlDecoder

Class Overview

This class has been deprecated; use parse(String, java.nio.charset.Charset) Utility for parsing application/x-www-form-urlencoded content as sent by user agents in the query string of GET form submissions and the body of POST form submissions.

Summary

Nested Classes
interface FormUrlDecoder.Callback This interface is deprecated. Do not use. (Currently only needed internally by UriParameterMap.)  
Fields
private static Parser<FormUrlDecoder.Result> parser
Public Methods
static ParamMap parse(String str, ParamMap map, String encoding)
This method is deprecated. Use UriParameterMap.parse(query, encoding). To convert from the string to the java.nio.charset.Charset instance, see Charsets. Note that an encoding of null will default to ISO-8859-1 in this deprecated implementation, whereas the classes in common.net default to UTF-8 encoding.
static void parseWithCallback(String str, String encoding, FormUrlDecoder.Callback callback)
This method is deprecated. Do not use. (Currently only needed internally by UriParameterMap.)
[Expand]
Inherited Methods
From class java.lang.Object

Fields

private static Parser<FormUrlDecoder.Result> parser

Public Methods

public static ParamMap parse (String str, ParamMap map, String encoding)

This method is deprecated.
Use UriParameterMap.parse(query, encoding). To convert from the string to the java.nio.charset.Charset instance, see Charsets. Note that an encoding of null will default to ISO-8859-1 in this deprecated implementation, whereas the classes in common.net default to UTF-8 encoding.

Parameters
str
map
encoding

public static void parseWithCallback (String str, String encoding, FormUrlDecoder.Callback callback)

This method is deprecated.
Do not use. (Currently only needed internally by UriParameterMap.)

Parameters
str
encoding
callback