[Java] 10진수를 16진수로 변환
2022. 12. 8. 20:16
프로그래밍/JAVA
1. Integer.toString(), Integer.toHexString()으로 16진수 변환 Integer 타입은 다음과 같이 Integer.toHexString(decimal), Integer.toString(decimal, 16)을 사용하여 16진수로 변환할 수 있음 public class Example1 { public static void main(String[] args) { int decimal = 1234; String hex = Integer.toHexString(decimal); System.out.println(hex); hex = Integer.toString(decimal, 16); System.out.println(hex); } } Output: 4d2 4d2 2. Long...