[Java] String 轉換 Integer

String -> Integer
//將 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★

留言

熱門文章

[C#] 將DataTable轉換成Html格式表格

[MS SQL] 查詢所有Procedure