2013-07-09 66 views
-1

我是新手到Java一個JRadioButton點擊獲取值比較

我的計劃有4個JRadioButton(按鈕1,按鈕2,按鈕3,將Button4)& 1按鈕(B),當我點擊(B),隨機INT秀4一個JRadioButton 現在我想

1。****對比(點擊b)Button1的INT(值),與按鈕2,我該怎麼辦呢?

2。****如果將Button1 INT比BUTTON2更大,文本應顯示 「BUTTON2是更大的」

b.addActionListener(new ActionListener() { 

     @Override 
     public void actionPerformed(ActionEvent e) 
     { 
      if(e.getSource()==button2) 
      { 
       if(button1==button2) 

       some idea for me?? 

      }} 

謝謝你幫我

回答

0

你真的想JradioButton將?你不覺得標籤會更好嗎?
你的第二點:我認爲你的意思是當button2的值更大時show button2更大

@Override 
     public void actionPerformed(ActionEvent e) 
     { 
     button1value = Integer.parseInt(button1.getText()); 
     button2value = Integer.parseInt(button2.getText()); 
     if(button1value<button2value){ 
      txtLoc.setText("Button 2 is greater"); 
     } 
}