728x90
320x100
문자를 숫자로, 숫자를 문자로
프로그램
public class TransData {
public static void main(String[] args) {
String s_val = "007"; // String -> int (문자를 숫자로)
int i_val = 999; // int -> String (숫자를 문자로)
int strToInt = Integer.parseInt(s_val);
String intToStr = Integer.toString(i_val);
System.out.println(strToInt);
System.out.println(intToStr);
}
}
결과
7
999
728x90
반응형
'잡다한 IT' 카테고리의 다른 글
윈도우 파일 탐색기 최근에 사용한 파일 리스트 지우기 (0) | 2024.04.24 |
---|---|
Java for문 진행중 빠져나가기 (0) | 2024.03.22 |
Input 태그 폼에서 엔터키를 눌러도 자동 Submit 안되게 하려면 (0) | 2024.02.02 |
jsp/html에서 excel 저장시, 개행(줄바꿈)처리, Alt+Enter 구현하기 (0) | 2024.01.16 |
The user specified as a definer ('root'@'%') does not exist 오류 해결하기 (0) | 2023.12.13 |