Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- vuex
- react
- NextJS
- InteliJ
- sveltekit
- Vue
- Vue3
- NextJS13
- EUREKA
- nodejs
- Spring
- Test
- Shell
- 오라클
- fetch
- Logging
- style
- ubuntu
- post
- vitejs
- svelte
- npm
- loguru
- springboot
- JUnit
- fastapi
- gradle
- d3js
- Python
- Java
Archives
- Today
- Total
양군의 행복한 이야기
문자로된 16진수 바이트 배열로 변경 본문
int l = str.length();
byte t[] = new byte[l / 2];
for (int i = 0; i < l / 2; i++)
{
t[i] = (byte) Integer.parseInt(str.substring(i * 2, i * 2 + 2), 16);
}