일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- high level client
- TensorFlow
- licence delete curl
- zip 암호화
- MySQL
- sort
- 900gle
- 파이썬
- aggregation
- ELASTIC
- Test
- plugin
- matplotlib
- query
- token filter test
- docker
- API
- Kafka
- 차트
- License
- license delete
- aggs
- Java
- Elasticsearch
- Python
- Mac
- springboot
- flask
- analyzer test
- zip 파일 암호화
Archives
- Today
- Total
목록16진수 (1)
개발잡부
[java] 10진수 를 2진수, 8진수, 16진수로 변환하기
10진수 -> 2진수, 8진수, 16진수로 변환하기 java.lang.Integer의 toBinaryString(), toOctalString(), toHexaString() 메소드를 이용하여 10진수를 2진수, 8진수, 16진수 문자열로 변환 public static void main(String[] args) { // 테스트를 위한 10진수 값 = 25 int a = 25; System.out.println("10진수 -> 2진수"); System.out.println(Integer.toBinaryString(a)); System.out.println(Integer.toString(a,2)); System.out.println("10진수 -> 3진수"); System.out.println(Intege..
JAVA
2023. 5. 15. 09:28