用数据填充 JList
有谁有关于如何使用用户输入的数据填充 JList
(在 JPanel
内)的好教程。具体来说,我想将人员添加到选定的名册中。这是用 ArrayList 填充它的问题吗?
任何帮助将不胜感激。
Does anyone have any good tutorials on how to fill a JList
(within a JPanel
) with user inputted data. Specifically, I want to add people to a selected roster. Is this a matter of filling it with an ArrayList
?
Any help would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
http://docs.oracle.com/javase/tutorial/uiswing/components/list.html
http://docs.oracle.com/javase/tutorial/uiswing/components/list.html
您使用
ListModel
创建一个JList
。当您编辑ListModel
时,它也会反映在JList
上。You create a
JList
with aListModel
. When you edit yourListModel
, it is reflected onJList
as well.我认为它正在与谷歌相处一段时间。我通过 Google 找到了以下结果。
I think it is having a little bit time with Google. I find the following results with Google.
使用任何布局管理器,例如 Gridlayout。
Use any layout manager like Gridlayout.