2012-03-10 60 views

回答

0
int i = 12; 
String str = String.valueOf(i); // one option 
str = "" + i; // two options 
Integer num = i; 
str = num.toString(); 

你應該總是嘗試找到在發佈之前回答自己。

0

試試下面的代碼: -

(integerValue).toString() 
0

我認爲你應該使用這個。

String str = Integer.toString(integer_variable);

謝謝...