字符串型————>数字型
方式1:
int  i=Integer.parseInt(str);(常用方式)
方式2:
int i=Integer.valueOf(str).intvalue();

数字型————>字符串型
方式1:
String str=Integer.toString(i);
方式2:
String str=String.valueOf(i);
方式3:
String str=" "+i;