Java - Convert int to String

int i = 3;
String s = "";

s = Integer.toString(i); 

or

s = String.valueOf(i);