Java have a int value using setText

后端 未结 7 1006
梦如初夏
梦如初夏 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:53

    To convert Integer Value to String you should

    MedicineTM medicine=tblmedicine.getSelectionModel().getSelectedItem();
    
        txtmedicine.setText(medicine.getMID());
        txtDescription.setText(medicine.getDescription());
        txtQty.setText(String.valueOf(medicine.getQty()));  // this is what i did
        cmbApproval.setValue(medicine.getApproval());
    

提交回复
热议问题