공감 스토리

JAVA - 한글 인코딩 체크 본문

프로그래밍/JAVA

JAVA - 한글 인코딩 체크

완전공감 2013. 9. 5. 11:45

JAVA - 한글 인코딩 체크


다른 서비스로 부터 데이터를 수신했을때 한글이 깨져 나오는 경우가 많습니다. 

이때 어떤 인코딩 방식을 썼는지 알고 싶을때 아래 로직을 태워 보면 알 수 있습니다.           

 

String recvText = "무궁화 꽃이 피었습니다.";

String[] charSet = {"utf-8","euc-kr","ksc5601","iso-8859-1","x-windows-949"}; for (int i=0; i<charSet.length; i++) { for (int j=0; j<charSet.length; j++) { try { System.out.println("[" + charSet[i] +" > " + charSet[j] +"] : " + new String(recvText.getBytes(charSet[i]), charSet[j])); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } } }



String hangul = "한글"; String[] encodings = new String[] {"EUC-KR", "UTF-8", "ISO8859-1"}; for (String encoding1 : encodings) { String encoded = URLEncoder.encode(hangul, encoding1); System.out.println(encoded); System.out.print("\t"); for (String encoding2 : encodings) { String decoded = URLDecoder.decode(encoded, encoding2); System.out.print(decoded + "\t\t"); } System.out.println("\n"); }



한글 인코딩 관련 공부 하고 싶으면 아래 글 참조하세요.


https://d2.naver.com/helloworld/19187 

https://d2.naver.com/helloworld/76650 

Comments