在 ActionListener 事件上重新填充 JList
根据他们在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
setListData()
方法允许您重置列表的内容。The
setListData()
method allows you to reset the contents of the list.,或者您可以使用 DefaultComboBoxModel,它允许您使用带有向量或数组的模型进行创建。
Or you could use the DefaultComboBoxModel which would allow you to create with model with a Vector or Array.