As far as i see, you are interested in concatenating a string with an integer. Lets assume that you have a string variable str and an int variable i. You will need to create an Integer object from your int primitive value and concatanete as follows:
String combined = str + (new Integer(i).toString());