[ String to int conversion ]

int xyz = Integer.parseInt("1000");

     

[ int to String conversion ]

int i = 1000;

String s = "" + i;