Java supprime le premier chiffre de int

int x = 123456789;
int new_x = Integer.parseInt(Integer.toString(x).substring(1));
Vivacious Vulture