반응형
유니코드를 한글로 변환 (Unicode to kor)
protected String uniToKsc(String uni) throws UnsupportedEncodingException{
return new String (uni.getBytes("8859_1"),"KSC5601");
}
한글을 유니코드로 변환 (kor to Unicode)
protected String kscToUni(String uni) throws UnsupportedEncodingException{
return new String (uni.getBytes("KSC5601"),"8859_1");
}
Source
반응형
'IT 문제해결' 카테고리의 다른 글
엑셀에서 셀 숫자값 반올림하기 (0) | 2017.11.21 |
---|---|
윈도우7 관리자 계정으로 설치! (1) | 2017.11.21 |
[Windows ] 설치 알림 팝업 사용자 계정 컨트롤 설정 (UAC) 비활성화 하기 (0) | 2017.10.25 |
윈도우 화면 캡처 하기 (0) | 2017.03.08 |
eclipse An error has occurred. See the log file .metadata/.log. (0) | 2016.02.12 |
댓글