SMALL
유니코드를 한글로 변환
protected String uniToKsc(String uni) throws UnsupportedEncodingException{
return new String (uni.getBytes("8859_1"),"KSC5601");
}
한글을 유니코드로 변환
protected String kscToUni(String uni) throws UnsupportedEncodingException{
return new String (uni.getBytes("KSC5601"),"8859_1");
}
LIST
'Android' 카테고리의 다른 글
WiFi Direct in Android 4.0 API Overview (0) | 2012.11.14 |
---|---|
Android 실제 번호와 가짜 번호 구분하기 (0) | 2012.11.13 |
ispeech TTS 한글 사용 (0) | 2012.11.13 |
한글 TTS (0) | 2012.11.13 |
HAXM 과 Android Atom x86 이미지로 안드로이드 에뮬레이터 속도 향상 시키기. (0) | 2012.11.06 |