Java int to string Posted on 2015年9月18日, updated on 2015年9月18日 by allenmo int to String s = Integer.toString(i); s = String.valueOf(i); s = i + “”; String to int i = Integer.parseInt(s); i = Integer.valueOf(s).intValue; Post Views: 2,088