String 클래스의 생성자에 encoding type을 지정하면 됨
String converted = new String(text); 이딴식으로 넣으면 당연히 글자가 깨지고
String converted = new String(text, "euc-kr"); 이렇게 해줘야 ksc5601코드가 utf-8로 잘 변환되고 출력이 된다.
반대의 경우에는
String converted = new String(text, "utf-8"); 과 같이 하면 text 어레이에 있는 내용을 utf-8로 간주하고 변환시켜줌
String converted = new String(text); 이딴식으로 넣으면 당연히 글자가 깨지고
String converted = new String(text, "euc-kr"); 이렇게 해줘야 ksc5601코드가 utf-8로 잘 변환되고 출력이 된다.
반대의 경우에는
String converted = new String(text, "utf-8"); 과 같이 하면 text 어레이에 있는 내용을 utf-8로 간주하고 변환시켜줌
'android programming' 카테고리의 다른 글
HTTP (0) | 2010.03.26 |
---|---|
http에 request요청시... redirect 하는 방법... (0) | 2010.03.05 |
커스텀 리스트뷰 다이얼로그에 컨텍스트메뉴리스너 달기.. (0) | 2010.03.04 |
팝업창(Dialog) (0) | 2010.01.24 |
가상키패드 (0) | 2010.01.24 |