gpt4 book ai didi

java - 更新/重新创建 JList

转载 作者:行者123 更新时间:2023-11-30 02:52:18 26 4
gpt4 key购买 nike

这是我在这里发表的第一篇文章,我对 Java 非常陌生。这是我试图提高我的 java 知识的东西。

我有一个按钮,单击该按钮会生成一个洗牌后的牌组作为 Jlist。当再次按下时,我非常希望它刷新 JList,或者以某种方式重新创建它。相反,它只是创建一个新列表,因此我现在有 2 个 JList。

        button1.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{

cards.choseCards(); //Creates an ArrayList with the suffled cards
JList<String> displayList = new JList<>(cards.deck.toArray(new String[0]));
frame.add(displayList);
frame.pack();
cards.cleanUpDeck(); //Removes all the cards from the ArrayList
}
});

最佳答案

这里的关键是 Swing 使用与模型- View - Controller 类似的模型- View 类型结构(但有差异),其中模型保存 View (组件)显示的数据.

您正在做的是创建一个全新的 JList,但您想要做的是更新现有和显示的 JList 的模型,或者为该相同的现有模型创建一个新模型J列表。 JList 使用 ListModel 作为其模式,通常实现为 DefaultListModel 对象,因此您需要更新或替换此模型,例如创建一个新的 DefaultListModel 对象,然后通过调用其 setModel(ListModel model) 将其插入到现有的 JList 中。方法。

例如,您的代码可能如下所示(由于我们不知道您的真实代码是什么样子,因此经过大量猜测得出):

button1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// create new model for the JList
DefaultListModel<String> listModel = new DefaultListModel<>();
cards.choseCards(); //Creates an ArrayList with the suffled cards

// add the cards to the model. I have no idea what your deck field looks like
// so this is a wild guess.
for (Card card : cards.deck) {
listModel.addElement(card.toString()); // do you override toString() for Card? Hope so
}

// Guessing that your JList is in a field called displayList.
displayList.setModel(listModel); // pass the model in
cards.cleanUpDeck(); //Removes all the cards from the ArrayList
}
});

关于java - 更新/重新创建 JList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38252427/

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