반응형 java 한글변환1 Java 에서 유니코드 한글 변환 유니코드를 한글로 변환 (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");} Sourcehttp://blog.naver.com/PostView.nhn?blogId=youys2000&logNo=150026448324&redire.. IT 문제해결 2017. 11. 19. 이전 1 다음 반응형