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>
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>
게시판 목록
팁게시판
디자인과 관련된 유용한 정보를 공유하세요.
질문은 상단의 QA에서 해주시기 바랍니다.
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 1052 | 18년 전 | 3339 | ||
| 1051 | 18년 전 | 6272 | ||
| 1050 | 18년 전 | 2176 | ||
| 1049 | 18년 전 | 1980 | ||
| 1048 | 18년 전 | 1932 | ||
| 1047 | 18년 전 | 1993 | ||
| 1046 | 18년 전 | 3179 | ||
| 1045 | 18년 전 | 2251 | ||
| 1044 | 18년 전 | 1942 | ||
| 1043 | 18년 전 | 1613 | ||
| 1042 | 18년 전 | 2066 | ||
| 1041 | 18년 전 | 3350 | ||
| 1040 | 18년 전 | 3199 | ||
| 1039 | 18년 전 | 1897 | ||
| 1038 | 18년 전 | 1470 | ||
| 1037 | 18년 전 | 3161 | ||
| 1036 | 18년 전 | 2043 | ||
| 1035 | 18년 전 | 1610 | ||
| 1034 | 18년 전 | 2824 | ||
| 1033 | 18년 전 | 1954 | ||
| 1032 | 18년 전 | 1829 | ||
| 1031 | 18년 전 | 1804 | ||
| 1030 | 18년 전 | 1768 | ||
| 1029 | 18년 전 | 2198 | ||
| 1028 | 18년 전 | 2599 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기