lo que haces este codigo es mostrarme una interfaz para ingresar usuario y contraseña:
package user;
import javax.swing.*;
public class username extends JFrame{
JPanel panel= new JPanel();
JLabel label1 = new JLabel("Ingresar Usuario ");
JTextField texto = new JTextField(10);
JLabel label2 = new JLabel("Ingresar Password");
JTextField texto2 = new JTextField(10);
JButton miboton = new JButton("Aceptar");
String user = texto.getText();
String password = texto2.getText();
String a;
public void mypanel(){
//panel.add(panel);
panel.add(label1);
panel.add(texto);
panel.add(label2);
panel.add(texto2);
panel.add(miboton);
add(panel);
super.setTitle("USUARIO");
super.setVisible(true);
super.setSize(300, 140);
OyenteExternoAccion oyenteBotonUno = new OyenteExternoAccion(texto);
miboton.addActionListener(oyenteBotonUno);
//texto.setText("login");
//user=texto.getText();
//texto2.setText("password");
//user=texto.getText();
}
public static void main(String[] args) {
username obj=new username();
obj.mypanel();
}
===> Y ESTE ES UNA CLASE QUE HE CREADO EN EL MISMO PAQUETE:
package user;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
public class OyenteExternoAccion implements ActionListener{
String user;
String password;
private JTextField texto;
private JTextField texto2;
public OyenteExternoAccion (JTextField texto){
this.texto=texto;
this.texto2=texto2;
}
@Override
public void actionPerformed(ActionEvent evento) {
JButton miboton= (JButton) evento.getSource();
user=texto.getText();
password=texto2.getText();
if (user.equals("admin")&& password.equals("1234")){
JOptionPane.showMessageDialog(null, "OK");}
else{
JOptionPane.showMessageDialog(null, "El username o password no es correcto");
}
}
}
*pero al ingresar usuario y password; al hacer click en aceptar deberia salir ok o El username o password no es correcto Y NO ME SALE ASI.......ayudenme please!!!!!!