是否可以为列表中的每个项目隐藏数据?
JComponents 可以使用 setName()
和 getName()
获取隐藏数据,对吗? JComboBox 项目怎么样? (我指的是 JComboBox 中的 items ,而不是 JComboBox 本身)
如果我有一个 JComboBox,并且在其中我有一个用户名列表(例如),现在我想要有列表中每个用户名的类似“id”(根据它们的排序方式),最好的方法是什么?
JComponents can obtain hidden data using setName()
and getName()
, right? What about JComboBox items? (I'm referring to the items in the JComboBox, NOT the JComboBox itself)
What if I have a JComboBox, and inside it I have a list of usernames (for example), now I want to have something like 'id' for each username in the list according to how they are ordered, what's the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
另请查看:带有隐藏数据的组合框 有关这些方法的更多信息。
Also check out: Combo Box With Hidden Data for more information on these approaches.
您的对象:
将项目添加到您的 JComboBox:
并获取项目:
Your object :
Add items to your JComboBox :
And get Item :
创建一个具有属性
username
和id
的User
类;仅返回.toString()
中的用户名
。Create a
User
class which has the attributesusername
andid
; return onlyusername
in.toString()
.