当前位置: 首页 > 知识库问答 >
问题:

Java JTextField actionListener不工作

宋耀
2023-03-14

我正在用JButtons和JTextFields制作一个程序。ActionListener适用于JButton,但不适用于JTextFields。

    public class Gui extends JFrame {

private JButton Subject[] = new JButton[8];
private String SubjNames[] = {"Length", "Mass", "Currency", "Temperature", "Time", "Speed", "Data", "Cooking"};
private JButton Length1[] = new JButton[8];
private JButton Length2[] = new JButton[8];
private String LengNames[] = {"inches", "feet", "yards", "miles", "millimeters", "centimeters", "meters", "kilometers"};
private JTextField convertedFrom;
private JTextField amountFrom;
private JTextField convertedTo;
private JTextField amountTo;
private String from;
private String CTo;
private String ATo;
private int SubjectLocX = 40;
private int SubjectLocY = 50;
private int Length1LocX = 40;
private int Length1LocY = 150;
private int Length2LocX = 330;
private int Length2LocY = 150;
private int t = 0;

public Gui (){

    super("Converter");
    setLayout(null);

    System.out.println("yes");

    for (int i = 0; i<8; i++) {
    Subject[i] = new JButton(SubjNames[i]);
    Subject[i].setLocation(SubjectLocX,SubjectLocY);
    Subject[i].setSize(200,50);
    add(Subject[i]);
    if (i < 3) {
        SubjectLocX = 40;
        SubjectLocY += 100;
    } else if (i == 3) {
        SubjectLocX = 330;
        SubjectLocY = 50;
    } else if (i > 3) {
        SubjectLocY += 100;
        }
    }

    HandlerClass handler = new HandlerClass();

    for (int i = 0; i<8; i++) {
    Subject[i].addActionListener(handler);
    }


    for (int i = 0; i<8; i++) {
    Length1[i] = new JButton(LengNames[i]);
    Length2[i] = new JButton(LengNames[i]);
    }
    convertedFrom = new JTextField(from, 20);
    convertedTo = new JTextField(CTo, 20);
    amountFrom = new JTextField("amount", 20);
    amountFrom.addActionListener(handler);
    amountTo = new JTextField(ATo, 20);

    for (int i = 0; i<8; i++) {
        Length1[i].addActionListener(handler);
        Length2[i].addActionListener(handler);
        }

    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setSize(600,500);
    setLocation(400,200);
    setVisible(true);
}

public void Step2() {

    for (int i = 0; i<8; i++) {
        remove(Subject[i]);
    }
    for (int i = 0; i<8; i++) {
        remove(Length1[i]);
        remove(Length2[i]);
    }
    remove(convertedFrom);
    remove(convertedTo);
    remove(amountFrom);
    remove(amountTo);

    HandlerClass handler = new HandlerClass();

    convertedFrom = new JTextField(from, 20);
    convertedFrom.setEditable(false);
    convertedFrom.setLocation(40,50);
    convertedFrom.setSize(200,30);
    add(convertedFrom);

    convertedTo = new JTextField(CTo, 20);
    convertedTo.setEditable(false);
    convertedTo.setLocation(330,50);
    convertedTo.setSize(200,30);
    add(convertedTo);

    amountFrom = new JTextField("amount", 20);
    amountFrom.setLocation(40,100);
    amountFrom.setSize(200,30);
    add(amountFrom);

    amountTo = new JTextField(ATo, 20);
    amountTo.setEditable(false);
    amountTo.setLocation(330,100);
    amountTo.setSize(200,30);
    add(amountTo);

    Length1LocX = 40;
    Length1LocY = 150;
    Length2LocX = 330;
    Length2LocY = 150;

    for (int i = 0; i<8; i++) {
        Length1[i].setLocation(Length1LocX, Length1LocY);
        Length1[i].setSize(90, 50);
        add(Length1[i]);
        if (i < 3) {
            Length1LocX = 40;
            Length1LocY += 100;
        } else if (i == 3) {
            Length1LocX = 150;
            Length1LocY = 150;
        } else if (i > 3) {
            Length1LocY += 100;
            }
        Length2[i].setLocation(Length2LocX, Length2LocY);
        Length2[i].setSize(90, 50);
        add(Length2[i]);
        if (i < 3) {
            Length2LocX = 330;
            Length2LocY += 100;
        } else if (i == 3) {
            Length2LocX = 440;
            Length2LocY = 150;
        } else if (i > 3) {
            Length2LocY += 100;
            }
    } 
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setSize(600,600);
    setLocation(400,200);
    setVisible(true);
}
private class HandlerClass implements ActionListener {
    public void actionPerformed(ActionEvent event) {
        System.out.println("bruhhh");
        if (event.getSource() == amountFrom) {
            System.out.println("works");
        }
        for (int i = 0; i<8; i++) {
            if (event.getSource() == Length1[i]) {
                from = event.getActionCommand();
            }
            if (event.getSource() == Length2[i]) {
                CTo = event.getActionCommand();
            }
        }

        Step2();
    }
}
}

在我的Gui构造函数的中间,创建了“金额来自”TextField,然后我添加了一个actionListener。然后,在ActionHandler类的底部,我查找它的事件。但是,当我运行程序(单击“长度”)然后更改文本字段中的金额并按回车键时,我没有得到控制台打印(它被认为是在文本字段操作发生时将“工作”打印到控制台)。所有其他JButtactionListeners都可以工作,但这个text field actionListener不起作用。

共有1个答案

周鸿光
2023-03-14

在构造函数中,将ActionListener添加到JTextField中。

amountFrom = new JTextField("amount", 20);
amountFrom.addActionListener(handler);

但是在您的方法Step2()中,您创建了一个JTextField的新实例,并且没有向其添加侦听器。

amountFrom = new JTextField("amount", 20);
amountFrom.setLocation(40,100);
amountFrom.setSize(200,30);
add(amountFrom);


注意:请查看布局管理器并考虑使用它们。https://docs.oracle.com/javase/tutorial/uiswing/layout/visual.html

 类似资料:
  • 我想在菜单栏文本被选中时更改它的颜色。 这里可能出了什么问题? 我尝试使用伪类':active',但没有得到应用。其中as':Hover'正在工作。 我还尝试使用'Router LinkActive',它应该添加类'Active-Link',但这也不起作用。 我在下面给出了HTML、SCCS和TS代码:

  • 我编写了一组简单的类,向一位朋友演示如何为AOP(而不是xml配置)使用注释。我们无法使@ComponentScan工作,并且AnnotationConfigApplicationContext getBean的行为也不正常。我想明白两件事。请参阅下面的代码: PersonOperationSI.java PersonOperations.java PersonOperationsConfigCl

  • 我正在Eclipse Neon中使用Hibernate工具(JBoss tools 4.4.0.Final)。现在,我想将数据库表反向工程为POJO对象和Hibernate映射文件。 我遵循了一些关于如何设置Eclipse来生成POJO对象的教程。在我运行配置之前,一切看起来都很好。什么都没发生,也没有抛出错误。有人能帮我吗?数据库是一个微软SQL服务器2014。 我的逆向工程配置文件看起来像:

  • 我正在尝试使用codeigniter insert\u batch将多行插入到我的数据库表中。根据错误报告,似乎没有设置表列。只是阵列的数量: 我的看法是: 我的控制器: 和型号:

  • 我尝试使用StreamWriter.WriteLine(不是静态地)将几行代码一次写到。txt文件中。 每个播放器对象都是字符串cosnatants。如果我使用不同的文件名(也称为BasicTestInfo2.txt),它会在bin.debug中创建该文件,但它是空的。我知道我到达了using块的内部(我在里面放了一个console.writeline),我知道我想要截断,这就是为什么我对appe

  • 我正在尝试使用yii2邮件组件发送电子邮件。 配置web。php 还有我的代码。 我收到了这个错误。 Swift\u TransportException预期响应代码为250,但收到代码“535”,消息“535-5.7.8用户名和密码不被接受。有关详细信息,请访问535 5.7.8https://support.google.com/mail/?p=BadCredentialsa13-v6sm41

  • 问题内容: 似乎不起作用,但确实起作用。有什么想法吗? 问题答案: 您不能在Java中将基本类型用作通用参数。改为使用: 使用自动装箱/拆箱,代码几乎没有区别。自动装箱意味着您可以编写: 代替: 自动装箱意味着将第一个版本隐式转换为第二个版本。自动拆箱意味着您可以编写: 代替: 如果未找到键,则隐式调用意味着将生成一个,例如: 原因是类型擦除。例如,与C#不同,泛型类型不会在运行时保留。它们只是显