Pages

Password Login | Şifreli Giriş


Şifreli Giriş Uygulaması

Kullanıcı Adı veya Parola Başarısız Ekranı

Kullanıcı Adı veya Parola Başarılı Ekranı



 
// Label ve Fieldların oluşturulması 
JLabel userJLabel = new JLabel("Kullanıcı Adı");
panel.add(userJLabel);

final JTextField userField = new JTextField(13);
panel.add(userField);

JLabel passJLabel = new JLabel("Parola");
panel.add(passJLabel);

final JPasswordField passField = new JPasswordField();
panel.add(passField); 
 
// Giriş Butonu 
JButton giris = new JButton("Giriş");
giris.addActionListener(new ActionListener() {
   public void actionPerformed(ActionEvent arg0) {
      // Giriş Butonuna tıklandığında kullanıcı adının ve parolanın alınması 
      String user = userField.getText();
      String pass = String.valueOf(passField.getPassword()); 
 
      // kullanıcı adı ve parola kontrol
      if (user.equalsIgnoreCase("Hakan") && pass.equalsIgnoreCase("KETEN")) {
         JOptionPane.showMessageDialog(null, "Giriş Başarılı");
      } else {
         JOptionPane.showMessageDialog(null, "Giriş Başarısız");
      }
   }
});
panel.add(giris);

JButton kapat = new JButton("Kapat");
kapat.addActionListener(new ActionListener() {
   public void actionPerformed(ActionEvent arg0) {
      System.exit(0);
   }
});
panel.add(kapat);


Proje: İndir

(Alıntı
Share on Google Plus

About Unknown

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

1 yorum: