'string'에 해당되는 글 1건

  1. 2014.11.21 string to int, int to string

String str = "111";

int n = Integer.parseInt(str);


int n = 111;

String str = Integer.toString(n);

'안드로이드' 카테고리의 다른 글

remote image to bitmap  (0) 2015.11.04
스레드 안에서 ui작업  (0) 2015.09.22
keystore생성 apk사인  (0) 2015.05.15
슬립모드 핸들링  (0) 2014.04.17
날짜, 시간 관련  (0) 2013.06.21
Posted by 떡공이
,