views:

70

answers:

1

I am very new to Java Me (first time). I want my program to ask the user for an IP addres. So four numbers that are between 0 and 255. It doesn't need to be difficult, but as I said, I'm new to Java Me.

A: 

How do you want the user to input the IP address? Do you want to use a TextField for example? You could do something like the following:

import javax.microedition.lcdui.*;
import javax.microedition.midlet.MIDlet;

public class GetIPAddress extends MIDlet implements CommandListener {

  private Display display;
  private Form form = new Form("IP Adress Input");
  private Command submit = new Command("Submit", Command.SCREEN, 1);
  private Command exit = new Command("Exit", Command.EXIT, 1);

  private TextField textfield = new TextField("IP Address:", "", 30, TextField.ANY);

  public GetIPAddress() {
    display = Display.getDisplay(this);
    form.addCommand(exit);
    form.addCommand(submit);
    form.append(textfield);
    form.setCommandListener(this);
  }

  public void startApp() {
    display.setCurrent(form);
  }

  public void pauseApp() {
  }

  public void destroyApp(boolean unconditional) {
  }

  public void commandAction(Command command, Displayable displayable) {
    if (command == submit) {
      // Do the manipulation of the IP address here. 
      // You can retrieve it using textfield.getString();
      form.removeCommand(submit);
    } else if (command == exit) {
      destroyApp(false);
      notifyDestroyed();
    }
  }
}
Alex