java swing清除Jlist的方法是?
Java swing 中是否有清除 JList 和 JTextField 的方法?
例如,我在 Jlist 中有一个字符串,在 JtextField 中有一个字符串,我想按“取消”按钮,我需要在鼠标侦听器中使用什么方法才能清除 Jlist 和 JtextField?
Is there a method in Java swing that clear a JList and a JTextField?
for example I have a string in a Jlist and a string in a JtextField and I want to press a "cancel" button, what method do i need to have in the mouse Listener in order for the Jlist and JtextField to clear?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于
JTextField
,您可以使用setText("");
方法。 在此处查看更多信息对于
JList
您可以使用setListData(new Object[0]);
方法。如果您希望保留列表但仅删除所选内容,可以使用clearSelection()
方法。 在此处查看更多信息For
JTextField
you can use thesetText("");
method. See more hereFor
JList
you can use thesetListData(new Object[0]);
method. If you want the list to stay but only remove the selection you can use theclearSelection()
method. See more here