String word = "무궁화 꽃이 피었습니다.";
System.out.println("utf-8 -> euc-kr : " + new String(word.getBytes("utf-8"), "euc-kr"));
System.out.println("utf-8 -> ksc5601 : " + new String(word.getBytes("utf-8"), "ksc5601"));
System.out.println("utf-8 -> x-windows-949 : " + new String(word.getBytes("utf-8"), "x-windows-949"));
System.out.println("utf-8 -> iso-8859-1 : " + new String(word.getBytes("utf-8"), "iso-8859-1"));
System.out.println("iso-8859-1 -> euc-kr : " + new String(word.getBytes("iso-8859-1"), "euc-kr"));
System.out.println("iso-8859-1 -> ksc5601 : " + new String(word.getBytes("iso-8859-1"), "ksc5601"));
System.out.println("iso-8859-1 -> x-windows-949 : " + new String(word.getBytes("iso-8859-1"), "x-windows-949"));
System.out.println("iso-8859-1 -> utf-8 : " + new String(word.getBytes("iso-8859-1"), "utf-8"));
System.out.println("euc-kr -> utf-8 : " + new String(word.getBytes("euc-kr"), "utf-8"));
System.out.println("euc-kr -> ksc5601 : " + new String(word.getBytes("euc-kr"), "ksc5601"));
System.out.println("euc-kr -> x-windows-949 : " + new String(word.getBytes("euc-kr"), "x-windows-949"));
System.out.println("euc-kr -> iso-8859-1 : " + new String(word.getBytes("euc-kr"), "iso-8859-1"));
System.out.println("ksc5601 -> euc-kr : " + new String(word.getBytes("ksc5601"), "euc-kr"));
System.out.println("ksc5601 -> utf-8 : " + new String(word.getBytes("ksc5601"), "utf-8"));
System.out.println("ksc5601 -> x-windows-949 : " + new String(word.getBytes("ksc5601"), "x-windows-949"));
System.out.println("ksc5601 -> iso-8859-1 : " + new String(word.getBytes("ksc5601"), "iso-8859-1"));
System.out.println("x-windows-949 -> euc-kr : " + new String(word.getBytes("x-windows-949"), "euc-kr"));
System.out.println("x-windows-949 -> utf-8 : " + new String(word.getBytes("x-windows-949"), "utf-8"));
System.out.println("x-windows-949 -> ksc5601 : " + new String(word.getBytes("x-windows-949"), "ksc5601"));
System.out.println("x-windows-949 -> iso-8859-1 : " + new String(word.getBytes("x-windows-949"), "iso-8859-1"));
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
» | JAVA - 한글 인코딩 변환 체크 한방에 끝내기 | 총관리자 | 2014.06.07 | 896 |
77 | 브라우저에서 JavaScript 실행 | 구퍼 | 2013.04.11 | 1635 |
76 | clshoesfashionc4u | nacyrobert | 2013.03.15 | 1897 |
75 | 안드로이드 로그인 세션유지에 관한 연구 | 구퍼 | 2011.02.22 | 17498 |
74 | "지금 보고 있는 웹페이지 창을 닫으려고 합니다..." 안나타나게 하기 | 구퍼 | 2010.07.30 | 11426 |
73 | Allowed memory Error 처리 | 구퍼 | 2010.07.13 | 2258 |
72 | 경고메세지 없이 부모창 새로고침 하는법 | 구퍼 | 2010.01.14 | 2921 |
71 | div display, visibility 속성구분 | 구퍼 | 2009.01.27 | 2331 |
70 | PHP로 문서의 HTML DOM을 손쉽게 가져오자~ | 구퍼 | 2008.08.14 | 3077 |
69 | 옥션처럼 실시간으로 남은시간 구하기 | 구퍼 | 2008.08.11 | 3555 |
68 | 테이블의 cell을 이동하는 js | 박상현 | 2003.12.16 | 2192 |
67 | table의 정렬등의 효과를 줄수 있는 dhtml | 박상현 | 2003.12.16 | 2439 |
66 | JMSN messenger-한글지원(2/2) | 박상현 | 2003.12.16 | 2293 |
65 | JMSN messenger-한글지원(1/2) | 박상현 | 2003.12.16 | 2363 |
64 | 닷넷채팅소스 | 박상현 | 2003.12.15 | 2858 |
63 | C# 메신저 AicacaClient1.2(클라이언트용) | 박상현 | 2003.12.15 | 3625 |
62 | C# 메신저 AicacaServer1.2(서버용)... | 박상현 | 2003.12.15 | 3705 |
61 | 드림X 같은 ActiveX 컨트롤을 이용한 컴포넌트 | 박상현 | 2003.12.15 | 2001 |
60 | c#으로 만든 asp.net 게시판 | 박상현 | 2003.12.15 | 5683 |
59 | socket으로 구현된 구미호 채팅방 V1.0.1 | 박상현 | 2003.11.24 | 2699 |