java comment trouver la longueur de int

int x = 1234; 
int lengthOfInt = String.valueOf(x).length(); //convert integer to String
											  //and get length of the String
ofroog