Integer.parseInt() 将字符串(string)形式的数字转化成数字(int) String str = “123456”; int num = Integer.parseInt(str) 结果为 num = 123456;