在 ActionListener 事件上重新填充 JList

发布于 2024-09-06 19:14:41 字数 128 浏览 5 评论 0原文

根据他们在 JComboBox 中选择的内容,我希望 JList 显示不同的字符串,但不确定如何重新填充 JList。当搜索API时,仍然一无所获。

你知道如何编码吗?

我顺便使用 NetBeans 作为参考。

Depending on what they choose in the JComboBox I want the JList to show different strings, not sure how to repopulate a JList though. When searching through the API, still found nothing.

Any idea on how you might code this?

Im using NetBeans by the way for reference.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

魂归处 2024-09-13 19:14:41

setListData() 方法允许您重置列表的内容。

The setListData() method allows you to reset the contents of the list.

思念绕指尖 2024-09-13 19:14:41

不确定如何重新填充 JList
虽然

DefaultListModel model = new DefaultListModel(...);
// add items to the model
list.setModel( model );

,或者您可以使用 DefaultComboBoxModel,它允许您使用带有向量或数组的模型进行创建。

not sure how to repopulate a JList
though

DefaultListModel model = new DefaultListModel(...);
// add items to the model
list.setModel( model );

Or you could use the DefaultComboBoxModel which would allow you to create with model with a Vector or Array.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文