如何將字串 String 轉換成整數 int?
A 有兩個方法:
) int i = IntegerparseInt(String sg);
) int i = IntegervalueOf(String sg)intValue();
注: 字串轉成 Double Float Long 的方法大同小異
如何將整數 int 轉換成字串 String ?
A 有三種方法:
) String s = StringvalueOf(i);
) String s = IntegertoString(i);
) String s = + i;
注: Double Float Long 轉成字串的方法大同小異
From:http://tw.wingwit.com/Article/program/Java/ky/201311/28467.html