Http connection Utilities : HttpURLConnection « Network Protocol « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Network Protocol » HttpURLConnectionScreenshots 
Http connection Utilities
 
/**********************************************************************************
 *
 * Copyright (c) 2003, 2004 The Regents of the University of Michigan, Trustees of Indiana University,
 *                  Board of Trustees of the Leland Stanford, Jr., University, and The MIT Corporation
 *
 * Licensed under the Educational Community License Version 1.0 (the "License");
 * By obtaining, using and/or copying this Original Work, you agree that you have read,
 * understand, and will comply with the terms and conditions of the Educational Community License.
 * You may obtain a copy of the License at:
 *
 *      http://cvs.sakaiproject.org/licenses/license_1_0.html
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
 * AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 **********************************************************************************/

import java.io.UnsupportedEncodingException;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLEncoder;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;

/**
 * HTTP utilites
 */
public class HttpTransactionUtils {

  private HttpTransactionUtils() {
  }

  /**
   * Default HTTP character set
   */
  public static final String DEFAULTCS = "ISO-8859-1";

  /*
   * Parameter handling
   */

  /**
   * Format one HTTP parameter
   
   @param name
   *          Parameter name
   @param value
   *          Parameter value (URLEncoded using default chracter set)
   @return Parameter text (ampersand+name=url-encoded-value)
   */
  public static String formatParameter(String name, String value) {
    return formatParameter(name, value, "&", DEFAULTCS);
  }

  /**
   * Format one HTTP parameter
   
   @param name
   *          Parameter name
   @param value
   *          Parameter value (will be URLEncoded)
   @param separator
   *          Character to separate parameters
   @param cs
   *          Character set specification (utf-8, etc)
   @return Parameter text (separator+name=url-encoded-value)
   */
  public static String formatParameter(String name, String value, String separator, String cs) {
    StringBuilder parameter = new StringBuilder();

    parameter.append(separator);
    parameter.append(name);
    parameter.append('=');

    try {
      parameter.append(URLEncoder.encode(value, cs));
    catch (UnsupportedEncodingException exception) {
      throw new IllegalArgumentException("Invalid character set: \"" + cs + "\"");
    }

    return parameter.toString();
  }

  /*
   * HTTP status values
   */

  /**
   * Informational status?
   
   @return true if so
   */
  public static boolean isHttpInfo(int status) {
    return ((status / 100== 1);
  }

  /**
   * HTTP redirect?
   
   @return true if so
   */
  public static boolean isHttpRedirect(int status) {
    return ((status / 100== 3);
  }

  /**
   * Success status?
   
   @return true if so
   */
  public static boolean isHttpSuccess(int status) {
    return ((status / 100== 2);
  }

  /**
   * Error in request?
   
   @return true if so
   */
  public static boolean isHttpRequestError(int status) {
    return ((status / 100== 4);
  }

  /**
   * Server error?
   
   @return true if so
   */
  public static boolean isHttpServerError(int status) {
    return ((status / 100== 5);
  }

  /**
   * General "did an error occur"?
   
   @return true if so
   */
  public static boolean isHttpError(int status) {
    return isHttpRequestError(status|| isHttpServerError(status);
  }

  /**
   * Set up a simple Map of HTTP request parameters (assumes no duplicate names)
   
   @param request
   *          HttpServletRequest object
   @return Map of name=value pairs
   */
  public static Map getAttributesAsMap(HttpServletRequest request) {
    Enumeration enumeration = request.getParameterNames();
    HashMap map = new HashMap();

    while (enumeration.hasMoreElements()) {
      String name = (Stringenumeration.nextElement();

      map.put(name, request.getParameter(name));
    }
    return map;
  }

  /**
   * Format a base URL string ( protocol://server[:port] )
   
   @param url
   *          URL to format
   @return URL string
   */
  public static String formatUrl(URL urlthrows MalformedURLException {
    return formatUrl(url, false);
  }

  /**
   * Format a base URL string ( protocol://server[:port][/file-specification] )
   
   @param url
   *          URL to format
   @param preserveFile
   *          Keep the /directory/filename portion of the URL?
   @return URL string
   */
  public static String formatUrl(URL url, boolean preserveFilethrows MalformedURLException {
    StringBuilder result;
    int port;

    result = new StringBuilder(url.getProtocol());

    result.append("://");
    result.append(url.getHost());

    if ((port = url.getPort()) != -1) {
      result.append(":");
      result.append(String.valueOf(port));
    }

    if (preserveFile) {
      String file = url.getFile();

      if (file != null) {
        result.append(file);
      }
    }
    return result.toString();
  }

  /**
   * Pull the server [and port] from a URL specification
   
   @param url
   *          URL string
   @return server[:port]
   */
  public static String getServer(String url) {
    String server = url;
    int protocol, slash;

    if ((protocol = server.indexOf("//")) != -1) {
      if ((slash = server.substring(protocol + 2).indexOf("/")) != -1) {
        server = server.substring(0, protocol + + slash);
      }
    }
    return server;
  }

  /*
   * urlEncodeParameters(): URL component specifications
   */

  /**
   * protocol://server
   */
  public static final String SERVER = "server";

  /**
   * /file/specification
   */
  public static final String FILE = "file";

  /**
   * ?parameter1=value1&parameter2=value2
   */
  public static final String PARAMETERS = "parameters";

  /**
   * /file/specification?parameter1=value1&parameter2=value2
   */
  public static final String FILEANDPARAMS = "fileandparameters";

  /**
   * Fetch a component from a URL string
   
   @param url
   *          URL String
   @param component
   *          name (one of server, file, parameters, fileandparameters)
   @return URL component string (null if none)
   */
  public static String getUrlComponent(String url, String componentthrows MalformedURLException {
    String file;
    int index;

    if (component.equalsIgnoreCase(SERVER)) {
      return getServer(url);
    }

    if (!component.equalsIgnoreCase(FILE&& !component.equalsIgnoreCase(PARAMETERS)
        && !component.equalsIgnoreCase(FILEANDPARAMS)) {
      throw new IllegalArgumentException(component);
    }

    file = new URL(url).getFile();
    if (file == null) {
      return null;
    }
    /*
     * Fetch file and parameters?
     */
    if (component.equalsIgnoreCase(FILEANDPARAMS)) {
      return file;
    }
    /*
     * File portion only?
     */
    index = file.indexOf('?');

    if (component.equalsIgnoreCase(FILE)) {
      switch (index) {
      case -1// No parameters
        return file;
      case 0// Only parameters (no file)
        return null;
      default:
        return file.substring(0, index);
      }
    }
    /*
     * Isolate parameters
     */
    return (index == -1null : file.substring(index);
  }

  /**
   * URLEncode parameter names and values
   
   @param original
   *          Original parameter list (?a=b&c=d)
   @return Possibly encoded parameter list
   */
  public static String urlEncodeParameters(String original) {
    StringBuilder encoded = new StringBuilder();

    for (int i = 0; i < original.length(); i++) {
      String c = original.substring(i, i + 1);

      if (!c.equals("&"&& !c.equals("="&& !c.equals("?")) {
        c = URLEncoder.encode(c);
      }
      encoded.append(c);
    }
    return encoded.toString();
  }

  /*
   * Test
   */
  public static void main(String[] argsthrows Exception {
    String u = "http://example.com/dir1/dir2/file.html?parm1=1&param2=2";

    System.out.println("Server: " + getUrlComponent(u, "server"));
    System.out.println("File: " + getUrlComponent(u, "file"));
    System.out.println("Parameters: " + getUrlComponent(u, "parameters"));
    System.out.println("File & Parameters: " + getUrlComponent(u, "fileandparameters"));
    System.out.println("Bad: " + getUrlComponent(u, "bad"));
  }
}

   
  
Related examples in the same category
1. Get the date of a url connection
2. Get the document expiration date
3. Get the document Last-modified date
4. Show the content type
5. Show the content length
6. Display request method
7. Get response code
8. Display response message
9. Display header information
10. Download and display the content
11. A Web Page Source Viewer
12. Reading from a URLConnection
13. Use BufferedReader to read content from a URL
14. Check if a page exists
15. Identify ourself to a proxy
16. Connect through a Proxy
17. Preventing Automatic Redirects in a HTTP Connection
18. Converting x-www-form-urlencoded Data
19. Getting the Cookies from an HTTP Connection
20. Sending a Cookie to an HTTP Server
21. Getting the Response Headers from an HTTP Connection
22. java.net.Authenticator can be used to send the credentials when needed
23. Grabbing a page using socket
24. Http Header Helper
25. Available Port Finder
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.