Today's date in DateField : DateField « J2ME « Java Tutorial






Today's date in DateField
import java.util.Date;

import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.DateField;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.midlet.MIDlet;

public class J2MEDateToday extends MIDlet implements CommandListener {
  private Display display;

  private Form form = new Form("Today's Date");

  private Date today = new Date(System.currentTimeMillis());

  private Command exit = new Command("Exit", Command.EXIT, 1);

  private DateField datefield = new DateField("", DateField.DATE_TIME);

  public J2MEDateToday() {
    display = Display.getDisplay(this);
    datefield.setDate(today);
    form.append(datefield);
    form.addCommand(exit);
    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 == exit) {
      destroyApp(false);
      notifyDestroyed();
    }
  }
}








31.6.DateField
31.6.1.Add DateField with current time to a formAdd DateField with current time to a form
31.6.2.Create DateField for DateCreate DateField for Date
31.6.3.Create DateField for Date and Time
31.6.4.Use DateFieldUse DateField
31.6.5.Today's date in DateFieldToday's date in DateField