gpt4 book ai didi

java - 使用 actionlistener 添加到数组

转载 作者:行者123 更新时间:2023-11-30 11:59:43 25 4
gpt4 key购买 nike

我是 Java 的初学者,遇到了一个我无法解决的问题。

我正在尝试将字符串添加到我的数组中,我已经测试了我的数组以便正常工作。但我的问题是我创建了一个 Action 监听器并试图从另一个类中获取文本,然后将其添加到数组中。

我的按钮监听器:

public class ButtonListener extends AddToLibrary implements ActionListener {
public void actionPerformed(ActionEvent e) {
Database dt = new Database();
dt.add(textType, textTitle, textSort, textDesc);
} }

我有一个 friend 告诉我,每次按下按钮时我都在创建一个新数据库,但是如果我只想“加载”它怎么办?可以清除数据库是我的数组的类名。

其中更“有趣”的部分是,当我在 eclipse 中运行它时,它会转到调试器,但没有向我显示任何明显的错误,而且由于我对 java 的了解有限,这对我来说太多了。

我的按钮监听器正在从 AddToLibrary 获取信息,它看起来像这样:

public class AddToLibrary extends JPanel{
public String textTitle;
public String textSort;
public String textDesc;
public String textType;

public AddToLibrary() {
// Förklarande text
JLabel titel = new JLabel("Titel");
JLabel sort = new JLabel("Genre");
JLabel desc = new JLabel("Beskriving");

// Textrutor
JTextField textTitel = new JTextField(null, 20);
textTitel.setToolTipText("ex. Flickan som lekte med elden");
JTextField textSort = new JTextField(null, 10);
textSort.setToolTipText("ex. Skräck, Action");
JTextField textDesc = new JTextField(null, 15);
textDesc.setToolTipText("ex. Stieg Larsson");

// Knappar
JButton addButton = new JButton("Lägg till");
addButton.addActionListener(new ButtonListener()); //Lyssna på knapp

// Combobox
JComboBox comboBox = new JComboBox();
comboBox.addItem("Film");
comboBox.addItem("CD");
comboBox.addItem("Bok");
comboBox.addItem("Annat");

// Lägg till i panelen
add(titel);
add(textTitel);
add(sort);
add(textSort);
add(desc);
add(textDesc);
add(comboBox);
add(addButton);


}

public String getTitelText(JTextField titelText) {
textTitle = "" + titelText.getText();
return textTitle;
}

public String getDescText(JTextField descText) {
textDesc = "" + descText.getText();
return textDesc;
}

public String getSortText(JTextField sortText) {
textSort = "" + sortText.getText();
return textSort;
}

public String getTypeText(JComboBox comboBox) {
return textType = "" + (String) comboBox.getSelectedItem() + ".png";
}
}

但它不起作用,我不明白为什么它不起作用,所以如果有人有时间帮助我,我会很高兴。

谢谢!

最佳答案

这里有一个错误:

public class ButtonListener extends AddToLibrary implements ActionListener {

扩展 AddToLibrary 会产生一个奇怪的继承问题。

简单的解决方案是内联定义 ButtonListener:

final Database dt = new Database();
addButton.addActionListener(new ActionListener() {

@Override
public void actionPerformed(ActionEvent e) {
dt.add(getTypeText(comboBox), getTitelText(textTitel), getSortText(textSort), getDescText(textDesc));
}
}); // Lyssna på knapp

一个重要的变化是创建一个添加字符串的数据库实例(正如 Amit Kumar 已经指出的那样)。

你的代码有很多问题,主要是非法构造。我的建议是获得一本好的 Java 教程/书籍,并注意它们如何解决问题。此外,如果您使用 Eclipse(或其他现代 IDE),它会通知您任何非法构造并尝试提出解决方案。

最后一点,公共(public)字符串和 JTextFields 具有相同的名称,这会给计算机带来问题,因为它不知道您指的是哪一个(这称为阴影)。为类中的每个变量定义唯一名称,以免混淆编译器或您自己。

=====================================

我对您的代码做了一些工作,并得出了以下结果。 (还可能进一步完善,但至少在合法性和可读性上这样好很多)

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;

public class AddToLibrary extends JPanel {
private static final long serialVersionUID = 1L;

private Database database = new Database();

private JComboBox comboBox = new JComboBox(new String[]{"Film", "CD", "Bok", "Annat"});
private JButton addButton = new JButton("Lägg till");

private JTextField textTitel = new JTextField(null, 20);
private JTextField textSort = new JTextField(null, 10);
private JTextField textDesc = new JTextField(null, 15);

private JLabel titel = new JLabel("Titel");
private JLabel sort = new JLabel("Genre");
private JLabel desc = new JLabel("Beskriving");

public AddToLibrary() {
textTitel.setToolTipText("ex. Flickan som lekte med elden");
textSort.setToolTipText("ex. Skräck, Action");
textDesc.setToolTipText("ex. Stieg Larsson");

addButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
database.add(comboBox.getSelectedItem() + ".png",
textTitel.getText(),
textSort.getText(),
textDesc.getText()
)
}
}); // Lyssna på knapp

// Lägg till i panelen
add(titel);
add(textTitel);
add(sort);
add(textSort);
add(desc);
add(textDesc);
add(comboBox);
add(addButton);
}
}

关于java - 使用 actionlistener 添加到数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2413067/

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