Impossible d'invoquer ToString () sur le type primitif int

int foo = 12345;
String foo_String = Integer.toString(foo);
Jolly Jaguar