기억안날 때 찾아쓰기 귀찮아서 적어둔다..
- STR => INT
String from = "123"; int to = Integer.parseInt(from);
HashMap 에서 str값 찾아서 그걸 int로 변환할 때는 아래처럼 써줘야 에러가 안난다.
int to = Integer.parseInt((String) HashMap.get("key"))
- INT => STR
int from = 123; String to = Integer.toString(from);
- DOUBLE => STR
double 형을 string 형태로 바꾸는건 조금 다르다.double from; String to = Double.toString(from);