java登录界面_如何采用java设置一个登陆界面

6.完整代码:

为了便于调试,下面小编给出该工程的完整代码:

package textpass;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JPanel;

import javax.swing.JPasswordField;

import javax.swing.JTextField;

public class textpass extends JFrame implements ActionListener {

private JPanel jp=new JPanel();

private JLabel[] jlArray={new JLabel("用户名"),

new JLabel("密 码"),new JLabel("")};

private JButton[] jbArray={new JButton("登陆"),

new JButton("清空")};

private JTextField jtxtName =new JTextField();

private JPasswordField jtxtPassword= new JPasswordField();

public textpass(){

jp.setLayout(null);

for(int i=0;i<2;i++){

jlArray[i].setBounds(30, 20+i*50, 80, 26);

jbArray[i].setBounds(50+i*110, 130, 80,26);

jp.add(jlArray[i]);

jp.add(jbArray[i]);

jbArray[i].addActionListener(this);

}

jtxtName.setBounds(80,20,180,30);

jp.add(jtxtName);

jtxtName.addActionListener(this);

jtxtPassword.setBounds(80,70,180,30);

jp.add(jtxtPassword);

jtxtPassword.setEchoChar('*');

jtxtPassword.addActionListener(this);

jlArray[2].setBounds(10, 180, 300, 30);

jp.add(jlArray[2]);

this.add(jp);

this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

this.setTitle("登陆");

this.setResizable(false);

this.setBounds(100, 100, 300, 250);

this.setVisible(true);

}

public void actionPerformed(ActionEvent e){

if(e.getSource()==jtxtName){

jtxtPassword.requestFocus();

}else if(e.getSource()==jbArray[1]){

jlArray[2].setText("");

jtxtName.setText("");

jtxtPassword.setText("");

jtxtName.requestFocus();

}else{

if(jtxtName.getText().equals("小明")&&String.valueOf(jtxtPassword.getPassword()).equals("123")){

jlArray[2].setText("登陆成功");

}else{

jlArray[2].setText("登陆错误");

}

}

}

public static void main(String[] args) {

new textpass();

}

}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值