728x90
1. String.valueOf(number)
public class MyClass {
public static void main(String args[]) {
int x = 5;
String str_x = String.valueOf(x);
System.out.println(str_x);
}
}
2. 문자열 연결을 사용
public class MyClass {
public static void main(String args[]) {
int x = 5;
String str_x = "" + x;
System.out.println(str_x);
}
}
3. Integer.toString(number)
public class MyClass {
public static void main(String args[]) {
int x = 5;
String str_x = Integer.toString(x);
System.out.println(str_x);
}
}
'JAVA' 카테고리의 다른 글
[java] getSession(), getSession(true), getSession(false) 차이점 - 개발자 배찌 (0) | 2022.07.10 |
---|---|
jsp 페이지 넘기기 (forward, redirect 차이점) (0) | 2022.07.09 |
[java] char 타입을 String 타입으로 변환하기 - 개발자 배찌 (0) | 2021.06.26 |
[java] 자주 쓰이는 정규식(REGULAR EXPRESSION) 유형 - 개발자 배찌 (0) | 2021.06.22 |
[java] 정규식 (REGULAR EXPRESSION) - 개발자 배찌 (0) | 2021.06.22 |