1、其他类型转String
String s = String.valueOf( value); //value 为任意一种数字类型。
2、字符串型转换成各种数字类型:
String s = "169";
byte b = Byte.parseByte( s );
System.out.println("byte类型数据:-------"+b);
short t = Short.parseShort( s );
System.out.println("short类型数据:-------"+t);
int i = Integer.parseInt( s );
System.out.println("int类型数据:-------"+i);
long l = Long.parseLong( s );
System.out.println("long类型数据:-------"+l);
Float f = Float.parseFloat( s );
System.out.println("Float类型数据:-------"+f);
Double d = Double.parseDouble( s );
System.out.println("Double类型数据:-------"+d);