developer tip

int를 Android에서 문자열로

copycodes 2020. 12. 10. 20:42
반응형

int를 Android에서 문자열로


다음과 같이 리소스의 ID를 얻습니다.

int test = (context.getResourceId("raw.testc3")); 

ID를 가져 와서 문자열에 넣고 싶습니다. 어떻게 할 수 있습니까? .toString이 작동하지 않습니다.


String testString = Integer.toString(test);

또는 사용할 수 있습니다.

String.valueOf ()

예.

int test=5;
String testString = String.valueOf(test);

긴 텍스트를 입력 할 시간이 없거나 기억 나지 않는 경우 매우 빠릅니다.

int a= 100;

String s = ""+a;

는 어때:

int a = 100;

String s = String.format("%s", a);

참고 URL : https://stackoverflow.com/questions/7839642/int-to-string-in-android

반응형