三种方法: int i; String s = String.valueOf(i);String s = Integer.toString(i);String s = "" + i;Remark : double, float, long转成String的方法类似。