参数出错
public void actionPerformed(ActionEvent e) {try{
int i=Integer.parseInt(text_input.getText());
text_hundred.setText(Integer.valueOf(i/100));
//此段有误,提示为setText()参数不能为int型,但上面改成这样也还是不行,到底应该怎么写?
text_decade.setText(i/10%10);
text_digit.setText(i%10);
}
catch(NumberFormatException nfe){}
}
}
[[it] 本帖最后由 yqiong 于 2008-11-12 17:11 编辑 [/it]]