take for example
int I = 2;
"string"+I; //The result is String2. Because there is a problem of type conversion here, your "string"+I contains ""to convert an object into a string. One is to add ""(or String.valueOf(i)) to convert it into a string type.