java的actionevent_[java]ActionEvent事件:获取输入字符串的长度

代码:

Example9_7.java

public class Example9_7

{

public static void main(String args[]){

WindowActionEvent win= new WindowActionEvent();

PoliceListen police = new PoliceListen();//创建监视器

win.setMyCommandListener(police);

win.setBounds(100,100,460,360);

win.setTitle("处理ActionEvent事件");

}

}

WindowActionEvent.java

import java.awt.*;

import javax.swing.*;

public class WindowActionEvent extends JFrame

{

JTextField inputText;

JTextArea textShow;

JButton button;

MyCommandListener listener;

public WindowActionEvent(){

init();

setVisible(true);

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

}

void init(){

setLayout(new FlowLayout());

inputText = new JTextField(10);

button = new JButton("确定");

textShow=new JTextArea(9,30);

add(inputText);

add(button);

add(new JScrollPane(textShow));

}

void setMyCommandListener(MyCommandListener listener){

this.listener=listener;

listener.setJTextField(inputText);

listener.setJTextArea(textShow);

inputText.addActionListener(listener);

button.addActionListener(listener);

}

}

MyCommandListener.java

import javax.swing.*;

import java.awt.event.*;

interface MyCommandListener extends ActionListener

{

public void setJTextField(JTextField text);

public void setJTextArea(JTextArea area);

}

PoliceListen.java

import java.awt.event.*;

import javax.swing.*;

public class PoliceListen implements MyCommandListener

{

JTextField textInput;

JTextArea textShow;

public void setJTextField (JTextField text){

textInput=text;

}

public void setJTextArea(JTextArea area){

textShow=area;

}

public void actionPerformed(ActionEvent e){

String str=textInput.getText();

textShow.append(str+"的长度:"+str.length()+"\n");

}

}

运行截图:

a3e089eb67cb99a7ed4cdd9d20bf23e6.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值