반응형
Android 개발중 한글과 유니코드간에 스트링 변환을 빈번히 하게 됩니다.
유니코드와 한글간에 변환하는 함수를 아래 메모합니다.
유니코드를 한글로 변환
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");
}
반응형
'IT 문제해결' 카테고리의 다른 글
리눅스 경로 에러 , java.library.path 설정 방법 (0) | 2023.02.03 |
---|---|
내 핸드폰 통신사 확인하기! (0) | 2023.01.27 |
PC 에 삼성노트(samsung note) 설치하기 (0) | 2020.10.15 |
npm i -g firebase-tools leads to ...firebase.ps1 cannot be loaded because running scripts is disabled on this system (0) | 2020.10.08 |
"Neo Network Technology Windows Service Program" 컴퓨터 렉요소 제거하기 (0) | 2020.02.28 |
댓글