58,451
社区成员




b1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
String tt1=t1.getText().toString();
String tt2=t2.getText().toString();
if(tt1.equals("123") && tt2.equals("123"))
{
//Intent intent=new Intent(buju.this,gongneng.class);
JOptionPane.showMessageDialog(jf, "验证成功","提示",0);
jf.setVisible(false);
new gongneng().main(null);
}
else
{
JOptionPane.showMessageDialog(jf,"账号或密码错误","提示",0);
}
}
});