//各种数字类型转换成字符串型:
String s = String.valueOf( value);// 其中 value 为任意一种数字类型。
//字符串型转换成各种数字类型:
String s = "169";
byte b = Byte.parseByte( s );
short t = Short.parseShort( s );
int i
文章来源: http://www.itshehui.com/forum.php?mod=viewthread&tid=827
String s = String.valueOf( value);// 其中 value 为任意一种数字类型。
//字符串型转换成各种数字类型:
String s = "169";
byte b = Byte.parseByte( s );
short t = Short.parseShort( s );
int i
文章来源: http://www.itshehui.com/forum.php?mod=viewthread&tid=827