Check the input value of a password field : TextBox « J2ME « Java Tutorial

Home
Java Tutorial
1.Language
2.Data Type
3.Operators
4.Statement Control
5.Class Definition
6.Development
7.Reflection
8.Regular Expressions
9.Collections
10.Thread
11.File
12.Generics
13.I18N
14.Swing
15.Swing Event
16.2D Graphics
17.SWT
18.SWT 2D Graphics
19.Network
20.Database
21.Hibernate
22.JPA
23.JSP
24.JSTL
25.Servlet
26.Web Services SOA
27.EJB3
28.Spring
29.PDF
30.Email
31.J2ME
32.J2EE Application
33.XML
34.Design Pattern
35.Log
36.Security
37.Apache Common
38.Ant
39.JUnit
Java Tutorial » J2ME » TextBox 
31.5.7.Check the input value of a password fieldPrevious/Next
Check the input value of a password field
import javax.microedition.lcdui.Alert;
import javax.microedition.lcdui.AlertType;
import javax.microedition.lcdui.Choice;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.List;
import javax.microedition.lcdui.TextField;
import javax.microedition.midlet.MIDlet;

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

  private TextField userName = new TextField("LoginID:"""10, TextField.ANY);

  private TextField password = new TextField("Password:"""10, TextField.PASSWORD);

  private Form form new Form("Sign in");

  private Command cancel = new Command("Cancel", Command.CANCEL, 2);

  private Command login = new Command("Login", Command.OK, 2);

  public void startApp() {
    display = Display.getDisplay(this);
    form.append(userName);
    form.append(password);
    form.addCommand(cancel);
    form.addCommand(login);
    form.setCommandListener(this);
    display.setCurrent(form);
  }

  public void pauseApp() {
  }

  public void destroyApp(boolean unconditional) {
    notifyDestroyed();
  }

  public void validateUser(String name, String password) {
    if (name.equals("name"&& password.equals("pass")) {
      menu();
    else {
      tryAgain();
    }
  }

  public void menu() {
    List services = new List("Choose one", Choice.EXCLUSIVE);
    services.append("Check Mail"null);
    services.append("Compose"null);
    services.append("Addresses"null);
    services.append("Options"null);
    services.append("Sign Out"null);
    display.setCurrent(services);
  }

  public void tryAgain() {
    Alert error = new Alert("Login Incorrect""Please try again", null, AlertType.ERROR);
    error.setTimeout(Alert.FOREVER);
    userName.setString("");
    password.setString("");
    display.setCurrent(error, form);
  }

  public void commandAction(Command c, Displayable d) {
    String label = c.getLabel();
    if (label.equals("Cancel")) {
      destroyApp(true);
    else if (label.equals("Login")) {
      validateUser(userName.getString(), password.getString());
    }
  }
}
31.5.TextBox
31.5.1.Add TextBox to a formAdd TextBox to a form
31.5.2.TextBox which accepts any inputTextBox which accepts any input
31.5.3.Phonenumber TextFieldPhonenumber TextField
31.5.4.Numeric TextFieldNumeric TextField
31.5.5.TextField.PASSWORD | TextField.NUMERIC)TextField.PASSWORD | TextField.NUMERIC)
31.5.6.TextField.PASSWORDTextField.PASSWORD
31.5.7.Check the input value of a password fieldCheck the input value of a password field
31.5.8.TextBox with size
31.5.9.Text AnchorText Anchor
31.5.10.Display text in TextBoxDisplay text in TextBox
31.5.11.Get value from TextFieldGet value from TextField
31.5.12.Remove command from TextBoxRemove command from TextBox
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.