공부/안드로이드2 Error generating final archive 위와 같이 Error generating final archive 란 메세지가 뜨게 되면 아무리 클린을 해도 에러가 해결 되지 않는다. 그럴 경우에는 C:\Documents and Settings\[User Name]\.android 폴더에서 debug.keystore 를 삭제하고 (ex Administrator) 프로젝트 클린후 , 재빌드 하면 된다. 2011. 2. 13. 데이터형 변환 (int <-> String) 1. int 형을 String형으로 바꾸기. int temp = 3; String str = String.ValueOf(temp); 이렇게 하면 'str'에 String 형 "3"이 들어가게 된다. 2. String형을 int형으로 바꾸기. String temp = "3"; int a = Integer.ValueOf(temp); 이렇게 하면 'a'에 3이 들어가게 된다. 2011. 1. 20. 이전 1 다음