String 和 int 类型相互转换 #String 转换成 int 类型int i = Integer.parseInt(String s) int 转换成 String 类型String s = String.valueOf(int i)