Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Java 应用程序中有两个 jRadioButtons。让我们说男性和女性。最初选择一个。在选择另一个时,应取消选择前一个,反之亦然。如何让它发挥作用?另外它如何用于存储在数据库中?
您需要使用的是 ButtonGroup 组件。看看:如何使用 ButtonGroup 组件
您可以为所有单选按钮指定相同的名称,您只想从中选择一个。这样,您将能够从所有按钮中选择一个。这可以通过创建一个ButtonGroup.
ButtonGroup
现在,如果要将选中的项添加到数据库中,只需获取与名称对应的Button Group值,即可获取选中按钮的值。
Button Group
查看文档和教程