java swing清除Jlist的方法是?

发布于 2024-10-31 23:28:52 字数 148 浏览 4 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放肆 2024-11-07 23:28:52

对于 JTextField,您可以使用 setText(""); 方法。 在此处查看更多信息

对于 JList 您可以使用 setListData(new Object[0]); 方法。如果您希望保留列表但仅删除所选内容,可以使用 clearSelection() 方法。 在此处查看更多信息

For JTextField you can use the setText(""); method. See more here

For JList you can use the setListData(new Object[0]); method. If you want the list to stay but only remove the selection you can use the clearSelection() method. See more here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文