摘要: 各种数字类型转换成字符串型: String s = String.valueOf( value); // 其中 value 为任意一种数字类型。 字符串型转换成各种数字类型: String s = "169"; byte b = Byte.parseByte( s ); short t = Shor... 阅读全文
posted @ 2014-05-28 23:12 星海浮沙 阅读(245) 评论(0) 推荐(0)