编辑 Jlist 中的项目
如何通过在特定项目后添加一个整数(类似于附加)来编辑 Jlist 中的项目?使用 addbuttonlistener 添加项目到 jlist 工作正常,但我不知道如何编辑它们。
How can I edit an item from a Jlist by simply adding an integer after that specific item (something like an append) ? Adding items to jlist with addbuttonlistener work fine but I don't know how can I edit them .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
一种解决方案是使用带有单列的
JTable
。然后您可以使用单元格编辑器。有关JTable
和 CellEditors 的更多信息,请参阅如何使用表格。One solution is to use a
JTable
with a single column. Then you can use a CellEditor. See more aboutJTable
and CellEditors on How to use Tables.您必须更新 model 对象。
You have to update the model object.
我认为你可以使用
txtlist 是你的 jlist 名称。
首先,您应该声明 listmodel。如果有问题,您可以联系我讨论
I think you can used
txtlist is your jlist name.
First, you should declare listmodel. if have problem , you can contact me to discus