java用户界面之事件与文本组件混合使用

import java.awt.*;
import java.awt.event.*;

import javax.swing.*;
public class TestField extends JFrame{
	
	JPasswordField password = new JPasswordField(10);
	JTextField compact = new JTextField(10);
	JTextField loose = new JTextField(20);
	
	TestField()
	{
		setLayout(new GridLayout(6,1,0,10));
		add(new JLabel("请输入密码,按回车键确认:"));
		add(password);
		
		password.setEchoChar('+');
		password.addActionListener(
                new ActionListener()
                {
                        public void actionPerformed(ActionEvent e)
                       {
                            char[] contentArray = password.getPassword();
                            StringBuffer content = new StringBuffer("");
                            
                            for(int i = 0; i < contentArray.length;i++)
                            {
                            	content.append(contentArray[i]);
                            	if(i < contentArray.length-1)
                            	{
                            		content.append(' ');
                            		content.append(' ');
                            	}
                            }
                            loose.setText(new String(content));
                            String compactString = new String(contentArray);
                            compact.setText(compactString);
                      }
                 }
            );
		add(new JLabel("您输入的密码一定是:"));
        add(compact);
        add(new JLabel("下面您可以更清楚地看清自己输入的密码了:"));
        add(loose);

        setLocation(100,100);
        setSize(300, 200);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setVisible(true);
	}
	public static void main(String[] args) {
		// TODO Auto-generated method stub
			new TestField();
	}

}

这里说明了第二种事件监听的使用方法:即在添加事件的时候,直接将待反应的操作添加,而不是在外部定义反应。

将输入的密码修改成秘密字母:
password.setEchoChar(’+’);

事件监听在包;import java.awt.event.*;
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值