Java have a int value using setText

后端 未结 7 993
梦如初夏
梦如初夏 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条回答
  •  无人及你
    2021-01-28 03:51

    String#valueOf convert your int to String.

    String.valueOf(e.getAge()); will return the string representation of the int argument.

    seatsTF.setText(String.valueOf(e.Age()));
    ...
    

提交回复
热议问题