Socket connection : Networks « J2ME « Java






Socket connection

Socket connection
/*
J2ME: The Complete Reference

James Keogh

Publisher: McGraw-Hill

ISBN 0072227109

*/
// jad file (Please verify the jar size first)
/*
MIDlet-Name: socketconnection
MIDlet-Version: 1.0
MIDlet-Vendor: MyCompany
MIDlet-Jar-URL: socketconnection.jar
MIDlet-1: socketconnection, , socketconnection
MicroEdition-Configuration: CLDC-1.0
MicroEdition-Profile: MIDP-1.0
MIDlet-JAR-SIZE: 100

*/
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import java.io.*;
import javax.microedition.io.*;
public class socketconnection extends MIDlet implements CommandListener {
  private Command exit, start;
  private Display display;
  private Form form;
  public socketconnection () 
  {
    display = Display.getDisplay(this);
    exit = new Command("Exit", Command.EXIT, 1);
    start = new Command("Start", Command.EXIT, 1);
    form = new Form("Read Write Socket");
    form.addCommand(exit);
    form.addCommand(start);
    form.setCommandListener(this);
  }
  public void startApp() throws MIDletStateChangeException 
  {
    display.setCurrent(form);
  }
  public void pauseApp() 
  {
  }
  public void destroyApp(boolean unconditional) 
  {
  }
  public void commandAction(Command command, Displayable displayable) 
  {
    if (command == exit) 
    {
      destroyApp(false);
      notifyDestroyed();
    }
    else if (command == start) 
    {
      try 
      {
       StreamConnection connection = (StreamConnection) Connector.open("socket://www.myserver.com:80");
       PrintStream output = 
         new PrintStream(connection.openOutputStream() );
       output.println( "GET /my.html HTTP/0.9\n\n" );
       output.flush();
       InputStream in = connection.openInputStream();
       int ch;
       while( ( ch = in.read() ) != -1 )
      {
         System.out.print( (char) ch );
       }
       in.close();
       output.close();
       connection.close();
     }
      catch( ConnectionNotFoundException error )
       {
         Alert alert = new Alert(
            "Error", "Cannot access socket.", null, null);
         alert.setTimeout(Alert.FOREVER);
         alert.setType(AlertType.ERROR);
         display.setCurrent(alert);      
        }
        catch( IOException error )
        {
         Alert alert = new Alert("Error", error.toString(), null, null);
         alert.setTimeout(Alert.FOREVER);
         alert.setType(AlertType.ERROR);
         display.setCurrent(alert);
        }
    }
  }
}


           
       








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.Http ConnectionHttp Connection
12.Cookie MIDletCookie MIDlet
13.JargoneerJargoneer
14.Post MIDlet
15.Patchy MIDletPatchy MIDlet
16.MIDlet to invoke a CGI script (GET method).MIDlet to invoke a CGI script (GET method).
17.Fetch Page MidletFetch Page Midlet
18.Invoke Servlet Midlet 2
19.Invoke Servlet Midlet 1
20.MIDlet to invoke a CGI script (POST method is used) (2)MIDlet to invoke a CGI script (POST method is used) (2)
21.Demonstrates the functionality of DatagramConnection framework.Demonstrates the functionality of DatagramConnection framework.
22.Sample to demonstrate Http GET and POST from MIDlet
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