Sample to demonstrate Http GET and POST from MIDlet : Networks « J2ME « 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 » J2ME » NetworksScreenshots 
Sample to demonstrate Http GET and POST from MIDlet

/***  Chapter 5 Sample to demonstrate Http GET and POST from MIDlet ***/

import java.io.*;
import javax.microedition.io.*;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;

public class HttpTest1 extends MIDlet {

   private Display display;

    public HttpTest1() {
    try {

      //NOTE:Comment out the functionality which you don't want to test
      getBirthdayFromNameUsingGet("John");
          getBirthdayFromNameUsingPost("John");
    }
    catch (IOException e) {
        System.out.println("IOException " + e.toString());
    }
  }

    /**
     * MIDlet lifecycle functions
     */
    public void startApp() {
    }

    public void pauseApp() {

    }

    public void destroyApp(boolean unconditional) {
    }

     /**
      This function connects to web server and passes the parameter name to the
    target in HTTP Get request. Upon successful connection, web server returns
    birthday for 'name'.
    This function also calls getConnectionInformation to retrieve properties of
    HTTPConnection
   **/

  public void getBirthdayFromNameUsingGet(String namethrows IOException {

    HttpConnection httpConn = null;
      String url = "http://localhost:8080/examples/servlet/GetBirthday?name=" + name;

    InputStream is = null;
    OutputStream os = null;

    try {
      // Open an HTTP Connection object
      httpConn = (HttpConnection)Connector.open(url);

      // Setup HTTP Request
      httpConn.setRequestMethod(HttpConnection.GET);
      httpConn.setRequestProperty("User-Agent",
        "Profile/MIDP-1.0 Confirguration/CLDC-1.0");


      // This function retrieves the information of this connection
      getConnectionInformation(httpConn);

      /** Initiate connection and check for the response code. If the
        response code is HTTP_OK then get the content from the target
      **/
      int respCode = httpConn.getResponseCode();
      if (respCode == httpConn.HTTP_OK) {
        StringBuffer sb = new StringBuffer();
        os = httpConn.openOutputStream();
        is = httpConn.openDataInputStream();
        int chr;
        while ((chr = is.read()) != -1)
          sb.append((charchr);

        // Web Server just returns the birthday in mm/dd/yy format.
        System.out.println(name+"'s Birthday is " + sb.toString());
      }
      else {
        System.out.println("Error in opening HTTP Connection. Error#" + respCode);
      }

      finally {
        if(is!= null)
           is.close();
          if(os != null)
            os.close();
      if(httpConn != null)
            httpConn.close();
    }

    }

  /**
      This function connects to web server and passes the parameter name to the
    target in HTTP POST request. Upon successful connection, web server returns
    birthday for 'name'.
    This function also calls getConnectionInformation to retrieve properties of
    HTTPConnection
   **/

  public void getBirthdayFromNameUsingPost(String namethrows IOException {

    HttpConnection httpConn = null;
      String url = "http://localhost:8080/examples/servlet/GetBirthday";
    InputStream is = null;
    OutputStream os = null;

    try {
      // Open an HTTP Connection object
      httpConn = (HttpConnection)Connector.open(url);
      // Setup HTTP Request to POST
      httpConn.setRequestMethod(HttpConnection.POST);

      httpConn.setRequestProperty("User-Agent",
        "Profile/MIDP-1.0 Confirguration/CLDC-1.0");
      httpConn.setRequestProperty("Accept_Language","en-US");
      //Content-Type is must to pass parameters in POST Request
      httpConn.setRequestProperty("Content-Type""application/x-www-form-urlencoded");

      // This function retrieves the information of this connection
      getConnectionInformation(httpConn);


      os = httpConn.openOutputStream();

      String params;
      params = "name=" + name;

      os.write(params.getBytes());

      /**Caution: os.flush() is controversial. It may create unexpected behavior
            on certain mobile devices. Try it out for your mobile device **/

      //os.flush();

      // Read Response from the Server

      StringBuffer sb = new StringBuffer();
      is = httpConn.openDataInputStream();
      int chr;
      while ((chr = is.read()) != -1)
        sb.append((charchr);

      // Web Server just returns the birthday in mm/dd/yy format.
      System.out.println(name+"'s Birthday is " + sb.toString());

      finally {
        if(is!= null)
           is.close();
          if(os != null)
            os.close();
      if(httpConn != null)
            httpConn.close();
    }

    }


    /***  After setup, attributes of the HttpConnection object can be retrived using
        various get methods.
    ***/
    void getConnectionInformation(HttpConnection hc) {

    System.out.println("Request Method for this connection is " + hc.getRequestMethod());
    System.out.println("URL in this connection is " + hc.getURL());
    System.out.println("Protocol for this connection is " + hc.getProtocol())// It better be HTTP:)
    System.out.println("This object is connected to " + hc.getHost() " host");
    System.out.println("HTTP Port in use is " + hc.getPort());
    System.out.println("Query parameter in this request are  " + hc.getQuery());

    }

}


           
       
Related examples in the same category
1. MIDlet to invoke a CGI script.
2. MIDlet to invoke a CGI script (POST method is used)
3. Https MIDlet
4. Pass a cookie (stored in rms) between the MIDlet and a Java servlet.
5. Use GET or POST to communicate with a Java servlet.
6. Use Java servlets sessions to tally golf scores.
7. Http Test
8. An example MIDlet to invoke a CGI script.An example MIDlet to invoke a CGI script.
9. Timer ServerTimer Server
10. Http ExampleHttp Example
11. Socket connectionSocket connection
12. Http ConnectionHttp Connection
13. Cookie MIDletCookie MIDlet
14. JargoneerJargoneer
15. Post MIDlet
16. Patchy MIDletPatchy MIDlet
17. MIDlet to invoke a CGI script (GET method).MIDlet to invoke a CGI script (GET method).
18. Fetch Page MidletFetch Page Midlet
19. Invoke Servlet Midlet 2
20. Invoke Servlet Midlet 1
21. MIDlet to invoke a CGI script (POST method is used) (2)MIDlet to invoke a CGI script (POST method is used) (2)
22. Demonstrates the functionality of DatagramConnection framework.Demonstrates the functionality of DatagramConnection framework.
23. Get file from networkGet file from network
24. Midlet Servlet 2Midlet Servlet 2
25. MIDlet to fetch a page using an HttpConnectionMIDlet to fetch a page using an HttpConnection
26. A simple network clientA simple network client
27. Send client request and Get server responseSend client request and Get server response
28. Socket MIDletSocket MIDlet
29. www.amazon.com Book Ranking MIDletwww.amazon.com Book Ranking MIDlet
30. Time Server
31. Http MIDletHttp MIDlet
32. DatagramSenderDatagramSender
33. Datagram Receiver
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.