我正在尝试将ActionListeners添加到JButtons New
,Delete
和Search
。
我尝试了几种方法,但仍然无法完成这项工作。
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);
}
}
});
}
}
答案 0 :(得分:3)
首先看一下How to Write an Action Listeners。
由于您已成功注册了ActionListener
JButton
,我们可以假设问题已解决。
在测试代码后,item
已添加到您的ArrayList
,您只是没有使用新内容更新用户界面,可能就像......
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