Class HttpUtils

java.lang.Object
javax.servlet.http.HttpUtils

@Deprecated
public class HttpUtils
extends java.lang.Object
Deprecated.
The HttpUtils API.
Author:
Manfred Riem ([email protected])
  • Constructor Summary

    Constructors 
    Constructor Description
    HttpUtils()
    Deprecated.
    Constructor.
  • Method Summary

    Modifier and Type Method Description
    static java.lang.StringBuffer getRequestURL​(HttpServletRequest request)
    Deprecated.
    Get the request URL.
    static java.util.Hashtable<java.lang.String,​java.lang.String[]> parsePostData​(int length, ServletInputStream inputStream)
    Deprecated.
    Parse the POST data.
    static java.util.Hashtable<java.lang.String,​java.lang.String[]> parseQueryString​(java.lang.String queryString)
    Deprecated.
    Parse the query string.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • HttpUtils

      public HttpUtils()
      Deprecated.
      Constructor.
  • Method Details

    • getRequestURL

      public static java.lang.StringBuffer getRequestURL​(HttpServletRequest request)
      Deprecated.
      Get the request URL.
      Parameters:
      request - the request.
      Returns:
      the request URL.
    • parsePostData

      public static java.util.Hashtable<java.lang.String,​java.lang.String[]> parsePostData​(int length, ServletInputStream inputStream)
      Deprecated.
      Parse the POST data.
      Parameters:
      length - the length.
      inputStream - the input stream.
      Returns:
      the hash table populated with key/value pairs.
    • parseQueryString

      public static java.util.Hashtable<java.lang.String,​java.lang.String[]> parseQueryString​(java.lang.String queryString)
      Deprecated.
      Parse the query string.
      Parameters:
      queryString - the query string.
      Returns:
      the hash table populated with key/value pairs.