Nie można wywołać ToString () na pierwotnym typu int

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