各類數字類型轉換成字符串型:
String s = String.valueOf( value); // 其中 value 爲任意一種數字類型。
字符串型轉換成各類數字類型:
String s = "169";
byte b = Byte.parseByte( s );
short t = Short.parseShort( s );
int i = Integer.parseInt( s );
long l = Long.parseLong( s );
Float f = Float.parseFloat( s );
Double d = Double.parseDouble( s );web