How to use GET and POST methods in HTTP from a MIDlet

This example shows how to use GET and POST methods in HTTP from a 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());
    // It better be HTTP:)
    System.out.println("Protocol for this connection is " + hc.getProtocol())
    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());

    }

}
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值