본문 바로가기
Mobile Programming/Android

안드로이드 int -> string , string -> int

by 학수씨 2011. 7. 21.

1) int -> String

 String s = "0"; 

 int i = Integer.parseInt(s);


2) String -> int

 int i = 0;

 String s = Integer.toString(i);





댓글