[Java] String 轉換 Integer
String -> Integer
Integer -> String
//將 String 轉換成 Integer
public static void main(String[] args)
{
String str = "1234";
int intValue1 = Integer.parseInt(str);
int intValue2 = Integer.parseInt("12345");
int intValue3 = Integer.valueOf("12345");
}
Integer -> String
//將 Integer 轉換成 String
public static void main(String[] args)
{
int intValue = "1234";
String str1 = String.valueOf(intValue);
String str2 = Integer.toString(intValue);
String str3 = "" + intValue;
}
By Hao★
留言
張貼留言
歡迎留言