JAVA中如何取得JTable里的JRadioButton的状态
我做了一个Jtable里一个单元格嵌套多个JRadioButton的画面,然后画面启动,改变了我JRadioButton的选择状态,然后按某个按钮时,我该如何判断当前Jt...
我做了一个Jtable里一个单元格嵌套多个JRadioButton的画面,然后画面启动,改变了我JRadioButton的选择状态,然后按某个按钮时,我该如何判断当前Jtable中的JRadioButton状态?
展开
1个回答
展开全部
给每个JRadioButton加ActionListener监听
例:
JRadioButton jb1=new JRadioButton("A");
JRadioButton jb2=new JRadioButton("B");
JRadioButton jb3=new JRadioButton("C");
public void actionPerformed(ActionEvent e){
if(e.getSource().equals(jb1)){
if(jb1.isSelected()){
System.out.println("按钮A被选中了");
}else{
System.out.println("按钮A被取消选中了");
}
}
if(e.getSource().equals(jb2)){
if(jb2.isSelected()){
System.out.println("按钮B被选中了");
}else{
System.out.println("按钮B被取消选中了");
}
}
if(e.getSource().equals(jb3)){
if(jb3.isSelected()){
System.out.println("按钮C被选中了");
}else{
System.out.println("按钮C被取消选中了");
}
}
}
例:
JRadioButton jb1=new JRadioButton("A");
JRadioButton jb2=new JRadioButton("B");
JRadioButton jb3=new JRadioButton("C");
public void actionPerformed(ActionEvent e){
if(e.getSource().equals(jb1)){
if(jb1.isSelected()){
System.out.println("按钮A被选中了");
}else{
System.out.println("按钮A被取消选中了");
}
}
if(e.getSource().equals(jb2)){
if(jb2.isSelected()){
System.out.println("按钮B被选中了");
}else{
System.out.println("按钮B被取消选中了");
}
}
if(e.getSource().equals(jb3)){
if(jb3.isSelected()){
System.out.println("按钮C被选中了");
}else{
System.out.println("按钮C被取消选中了");
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询