엠

String 을 UTF8 encoding 하기

· 2006-12-15 (금) 12:36:16 · 2324
ZipOutputStream 에 있는 private method 입니다.

String을 UTF8 encoding 해서 bytes array 로 만들어 주는군요. --;

/*
* Returns an array of bytes representing the UTF8 encoding
* of the specified String.
*/
private static byte[] getUTF8Bytes(String s) {
char[] c = s.toCharArray();
int len = c.length;
// Count the number of encoded bytes...
int count = 0;
for (int i = 0; i < len; i++) {
int ch = c[i];
if (ch <= 0x7f) {
count++;
} else if (ch <= 0x7ff) {
count += 2;
} else {
count += 3;
}
}
// Now return the encoded bytes...
byte[] b = new byte[count];
int off = 0;
for (int i = 0; i < len; i++) {
int ch = c[i];
if (ch <= 0x7f) {
b[off++] = (byte)ch;
} else if (ch <= 0x7ff) {
b[off++] = (byte)((ch >> 6) | 0xc0);
b[off++] = (byte)((ch & 0x3f) | 0x80);
} else {
b[off++] = (byte)((ch >> 12) | 0xe0);
b[off++] = (byte)(((ch >> 6) & 0x3f) | 0x80);
b[off++] = (byte)((ch & 0x3f) | 0x80);
}
}
return b;
}<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

6,077건

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
07-03-22 조회 2,595
07-03-12 조회 3,329
07-02-16 조회 2,156
07-02-14 조회 3,961
07-02-10 조회 2,796
07-02-09 조회 3,162
07-01-19 조회 2,938
07-01-16 조회 3,808
06-12-16 조회 4,694
06-11-30 조회 2,432
06-11-25 조회 2,554
06-10-15 조회 3,971
06-09-26 조회 4,116
06-09-26 조회 4,270
06-09-22 조회 3,071
06-09-21 조회 2,535
06-09-21 조회 2,601
06-09-02 조회 2,364
06-08-08 조회 4,028
06-07-20 조회 2,731
06-07-17 조회 2,358
06-07-13 조회 3,184
06-07-11 조회 2,440
06-07-11 조회 2,463
06-07-11 조회 2,810