【正确答案】:if(e.getSource() == bCvt) {
String t = taText.getText();
if(rbUppercase.isSelected())
taText.setText(t.toUpperCase());
else if(rbLowercase.isSelected())
taText.setText(t.toLowerCase());
}