본문 바로가기
Java

자바 한글 인코딩 테스트

by 전재훈 2018. 10. 17.
반응형

자바 한글 관련 인코딩 오류가 생겼을 경우 테스트해 볼 수 있는 print 문입니다.


System.out.println("utf-8 -> euc-kr        : " + new String(proposer.getBytes("utf-8"), "euc-kr"));

System.out.println("utf-8 -> ksc5601      : " + new String(proposer.getBytes("utf-8"), "ksc5601"));

System.out.println("utf-8 -> x-windows-949 : " + new String(proposer.getBytes("utf-8"), "x-windows-949"));

System.out.println("utf-8 -> iso-8859-1    : " + new String(proposer.getBytes("utf-8"), "iso-8859-1"));

System.out.println("iso-8859-1 -> euc-kr        : " + new String(proposer.getBytes("iso-8859-1"), "euc-kr"));

System.out.println("iso-8859-1 -> ksc5601       : " + new String(proposer.getBytes("iso-8859-1"), "ksc5601"));

System.out.println("iso-8859-1 -> x-windows-949 : " + new String(proposer.getBytes("iso-8859-1"), "x-windows-949"));

System.out.println("iso-8859-1 -> utf-8         : " + new String(proposer.getBytes("iso-8859-1"), "utf-8"));

System.out.println("euc-kr -> utf-8          : " + new String(proposer.getBytes("euc-kr"), "utf-8"));

System.out.println("euc-kr -> ksc5601        : " + new String(proposer.getBytes("euc-kr"), "ksc5601"));

System.out.println("euc-kr -> x-windows-949 : " + new String(proposer.getBytes("euc-kr"), "x-windows-949"));

System.out.println("euc-kr -> iso-8859-1    : " + new String(proposer.getBytes("euc-kr"), "iso-8859-1"));

System.out.println("ksc5601 -> euc-kr        : " + new String(proposer.getBytes("ksc5601"), "euc-kr"));

System.out.println("ksc5601 -> utf-8          : " + new String(proposer.getBytes("ksc5601"), "utf-8"));

System.out.println("ksc5601 -> x-windows-949 : " + new String(proposer.getBytes("ksc5601"), "x-windows-949"));

System.out.println("ksc5601 -> iso-8859-1    : " + new String(proposer.getBytes("ksc5601"), "iso-8859-1"));

System.out.println("x-windows-949 -> euc-kr     : " + new String(proposer.getBytes("x-windows-949"), "euc-kr"));

System.out.println("x-windows-949 -> utf-8      : " + new String(proposer.getBytes("x-windows-949"), "utf-8"));

System.out.println("x-windows-949 -> ksc5601    : " + new String(proposer.getBytes("x-windows-949"), "ksc5601"));

System.out.println("x-windows-949 -> iso-8859-1 : " + new String(proposer.getBytes("x-windows-949"), "iso-8859-1"));



반응형

댓글