Java 中String 和 int的转换
//String 转为 int String str = “123”; int a = Integer.parseInt(str); // int转为String int b = 1; String str = String.valueOf(b);