Java have a int value using setText

后端 未结 7 1086
梦如初夏
梦如初夏 2021-01-28 03:02

I\'m trying to set an int value using jTextField and the setText method. But of course setText wants a String. How do I get round this? I\'ll give you a snippet of the code:

7条回答
  •  萌比男神i
    2021-01-28 03:56

    Assuming age field is of type int, you could try something like:

            ageTF.setText( Integer.toString(e.getAge()) );
    

提交回复
热议问题