Date Today : Date « J2ME « Java






Date Today

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

*/
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 DateToday 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 DateToday() {
    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();
    }
  }
}

           
       








Related examples in the same category

1.Date FieldDate Field
2.KVM Calendar
3.KVM Time Zones