1、把String转化为int类型
Integer.valueOf(i);
2、把int转化为String
1)String.valueOf(i) 2)Integer.toString(i) 3)i+""