gpt4 book ai didi

java - 向 JButton 添加监听器

转载 作者:行者123 更新时间:2023-11-29 04:52:25 24 4
gpt4 key购买 nike

我正在尝试将 ActionListeners 添加到 JButtons NewDeleteSearch。我已经尝试了几种方法和方法,但仍然无法完成这项工作。

P.S 我已经为 New 按钮添加了操作,似乎可以正常工作,但它不会在数组中添加任何内容。

感谢您的帮助!提前致谢。

package datingrun;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;

public class Main extends javax.swing.JFrame {

public static void main(String[] args) {

JFrame frame = new JFrame("Onomata");

JLabel ll = new JLabel("Êáôá÷ùñÞóåéò");
ll.setBounds(150, 20, 300, 15);

JLabel l2 = new JLabel("Onoma");
l2.setBounds(155, 80, 300, 15);

JLabel l3 = new JLabel("Filo");
l3.setBounds(270, 80, 100, 15);

JLabel l4 = new JLabel("Ilikia");
l4.setBounds(280, 80, 100, 15);

JButton b1 = new JButton();
b1.setText("New");
b1.setBounds(105, 400, 80, 40);



JButton b2 = new JButton();
b2.setText("Search");
b2.setBounds(205, 400, 80, 40);



JButton b3 = new JButton();
b3.setText("Delete");
b3.setBounds(305, 400, 80, 40);



JTextField tf1 = new JTextField(20);
tf1.setSize(15, 20);
tf1.setBounds(130, 100, 100, 20);

JTextField tf2 = new JTextField(20);
tf2.setSize(15, 20);
tf2.setBounds(250, 100, 100, 20);

JTextArea t1 = new javax.swing.JTextArea();
t1.setColumns(20);
t1.setRows(5);
t1.setEditable(false);
t1.setBounds(125, 200, 120, 150);

JTextArea t2 = new javax.swing.JTextArea();
t2.setColumns(20);
t2.setRows(5);
t2.setEditable(false);
t2.setBounds(245, 200, 120, 150);

JTextArea t3 = new javax.swing.JTextArea();
t3.setColumns(30);
t3.setRows(5);
t3.setEditable(false);
t3.setBounds(245, 220, 100, 100);

frame.add(ll);
frame.add(l2);
frame.add(l3);
frame.add(tf1);
frame.add(tf2);
frame.add(t1);
frame.add(t2);
frame.add(t3);
frame.add(b1);
frame.add(b2);
frame.add(b3);

frame.setSize(500, 500);
frame.setLayout(null);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);

final ArrayList Onomata = new ArrayList();

Onomata.add("Stelios Mavridis");
Onomata.add("Nikos Tzouvelekis");
Onomata.add("Andreas Paraskevas");

final ArrayList Filo = new ArrayList();

Filo.add("M");
Filo.add("M");
Filo.add("M");

final ArrayList Ilikia = new ArrayList();

Ilikia.add("24");
Ilikia.add("30");
Ilikia.add("40");

t1.append("Onoma \n");
t2.append("Filo \n");
t3.append("Ilikia \n");

for (int i = 0; i < Onomata.size() && i < Filo.size() && i < Ilikia.size(); i++) {
t1.append((String) Onomata.get(i) + "\n");
t2.append((String) Filo.get(i) + "\n");
t3.append(Ilikia.get(i).toString() + "\n");



}
b1.addActionListener(new ActionListener() {

@Override
public void actionPerformed(ActionEvent e) {

String text = JOptionPane.showInputDialog("Insert");
String item = null;

if (text != null) {
item = text.trim();
} else {
return;
}

if (!item.isEmpty()) {
Onomata.add(item);
Filo.add(item);
Ilikia.add(item);
}
}
});


}
}

最佳答案

首先查看 How to Write an Action Listeners

由于您已经成功地向 JButton 注册了一个 ActionListener,我们可以假设问题已解决。

在测试您的代码后,item 已添加到您的 ArrayList 中,您只是没有使用新内容更新 UI,可能类似于...

b1.addActionListener(new ActionListener() {

@Override
public void actionPerformed(ActionEvent e) {

String text = JOptionPane.showInputDialog("Insert");
String item = null;

if (text != null) {
item = text.trim();
} else {
return;
}

if (!item.isEmpty()) {
Onomata.add(item);
Filo.add(item);
Ilikia.add(item);
t1.setText(null);
t2.setText(null);
t3.setText(null);
for (int i = 0; i < Onomata.size() && i < Filo.size() && i < Ilikia.size(); i++) {
t1.append((String) Onomata.get(i) + "\n");
t2.append((String) Filo.get(i) + "\n");
t3.append(Ilikia.get(i).toString() + "\n");

}
}
}
});

现在,运行代码后,JTextArea 不太适合您似乎要完成的任务,相反,可以考虑使用 JTable,请参阅 How to Use Tables了解更多详情。

避免使用 null 布局,像素完美布局是现代 ui 设计中的一种错觉。影响组件单个尺寸的因素太多,没有一个是您可以控制的。 Swing 旨在与核心的布局管理器一起工作,丢弃这些将导致无穷无尽的问题和问题,您将花费越来越多的时间来尝试纠正

更多细节见 Laying Out Components Within a Container

关于java - 向 JButton 添加监听器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34921639/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com