일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Spring
- JVM
- AWS
- Oracle
- Git
- springboot
- laravel
- javascript
- Web Server
- Design Patterns
- jsp
- Gradle
- Spring Batch
- Spring Boot
- MySQL
- ubuntu
- it
- redis
- jenkins
- java
- 요리
- IntelliJ
- tool
- 맛집
- elasticsearch
- linux
- ReactJS
- db
- php
- devops
Archives
- Today
- Total
아무거나
문자열을 Hex(=16진수)로 변환하는 방법 (String To Hex) 본문
반응형
Hexadecimal: 컴퓨터 분야에서 숫자를 표현하기 위해 사용하는 진법 방식중에 하나이다. 이것은 Hexadecimal 또는 Hex라고 불린다.
-> 16진수 (16을 기수로 하는 번호체계를 말한다.)
이러한 헥사코드를 Java를 이용하여 문자열 -> Hex, Hex -> 문자열을 변환하는 방법을 알아보자.
import java.io.UnsupportedEncodingException;
import javax.xml.bind.DatatypeConverter;
import org.apache.commons.codec.DecoderException;
import org.apache.commons.codec.binary.Hex;
public class ExampleMain {
public static void main(String[] args) throws Exception {
String testStr = "bkjeon1614";
HexConverter hexConverter = new HexConverter();
String stringToHex = hexConverter.getStringToHex(testStr);
String hexToString = hexConverter.getHexToString(stringToHex);
System.out.println("String To Hex: " + stringToHex);
System.out.println("Hex To String: " + hexToString);
}
}
// 코드 변환
class HexConverter {
// String to Hex
public String getStringToHex(String testStr) throws UnsupportedEncodingException {
byte[] testBytes = testStr.getBytes("UTF-8");
return DatatypeConverter.printHexBinary(testBytes);
}
// Hex to String
public String getHexToString(String testHex) throws UnsupportedEncodingException, DecoderException {
// https://mvnrepository.com/artifact/commons-codec/commons-codec/1.10
byte[] testBytes = Hex.decodeHex(testHex.toCharArray());
return new String(testBytes, "UTF-8");
}
}
반응형
'Java & Kotlin > Java' 카테고리의 다른 글
Optional.ofNullable 사용 (0) | 2019.01.16 |
---|---|
Java split 함수 사용시 "|"(=vertical bar) 기준으로 제대로 분리되지 않을 때 (0) | 2019.01.07 |
IntelliJ프로젝트에 JAR 라이브러리 추가하기 (0) | 2019.01.07 |
스프링부트에서 swagger사용시 크로스 도메인 이슈 (2) | 2018.11.20 |
이미지 리사이징 (0) | 2018.10.19 |
Comments