为了账号安全,请及时绑定邮箱和手机立即绑定

java swing JRadioButton如何获取值

java swing JRadioButton如何获取值

TerryLau 2016-06-16 11:23:08
多个JRadioButton 加入ButtonGroup之后,如何获取某个选定的JRadioButton 的值。我试过好多办法都不行,以下是部分代码:                JRadioButton rbtnUser = new JRadioButton("普通用户",true); //default select rbtnUser.setBounds(129, 175, 87, 23); contentPane.add(rbtnUser); JRadioButton rbtnRoot = new JRadioButton("管理员"); rbtnRoot.setBounds(225, 175, 64, 23); contentPane.add(rbtnRoot); ButtonGroup bg=new ButtonGroup(); bg.add(rbtnUser); bg.add(rbtnRoot); if(rbtnUser.isSelected()){ userType=rbtnUser.getText(); }else if(rbtnRoot.isSelected()){ userType=rbtnRoot.getText(); }        为什么每次只能获得默认选择的“普通用户”的值,另一个无法获取。。。。。        各路大神帮帮忙,赶着交作业呢。。。。。谢谢
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 4927 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信