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 | 31 |
Tags
- GIT
- profile
- Windows 10
- tomcat
- Eclipse
- IntelliJ
- resource
- ssh
- Mac
- 단축키
- vscode
- Quartz
- plugin
- 네트워크
- maVen
- VirtualBox
- JavaScript
- web.xml
- 줄바꿈 문자
- lsof
- xargs
- context
- import
- port
- Source
- find
- grep
- bash
- Windows
- netsh
Archives
- Today
- Total
develog
byte, int, 한글 본문
byte[] bytes = "한글".getBytes("EUC-KR");
for (int i = 0; i < bytes.length; i++) {
byte b = bytes[i];
System.out.print(b);
System.out.print("\t");
System.out.println(Integer.toBinaryString(0xFF & b));
}
System.out.println();
System.out.println(new String(new byte[] {-57, -47, -79, -37}, "EUC-KR"));
'Dev > Java' 카테고리의 다른 글
[Java] byte <-> int (0) | 2014.07.27 |
---|---|
[Java] bit & shift 연산 (0) | 2014.07.26 |
Quartz Clustering (0) | 2014.06.24 |
The Tomcat JDBC Connection Pool (0) | 2014.06.12 |
hMailServer 설치 (Windows 7 64 bit) (0) | 2014.05.22 |
Comments