정규식을 이용해 아래와 같이 변환하면 한방에 테스트 할수 있습니다^-^b
하지만 정말 어쩔수 없을때만 아래와 같이 사용하고
프로젝트 초기라면 서버 인코딩 설정이나, Request 인코딩 설정 또는 DB 인코딩설정을 맞춰준후
작업하는것이 좋은거 같습니다.
하지만 정말 어쩔수 없을때만 아래와 같이 사용하고
프로젝트 초기라면 서버 인코딩 설정이나, Request 인코딩 설정 또는 DB 인코딩설정을 맞춰준후
작업하는것이 좋은거 같습니다.
o(new String(word.getBytes("utf-8"), "euc-kr"));
o(new String(word.getBytes("utf-8"), "ksc5601"));
o(new String(word.getBytes("utf-8"), "x-windows-949"));
o(new String(word.getBytes("utf-8"), "iso-8859-1"));
o(new String(word.getBytes("iso-8859-1"), "euc-kr"));
o(new String(word.getBytes("iso-8859-1"), "ksc5601"));
o(new String(word.getBytes("iso-8859-1"), "x-windows-949"));
o(new String(word.getBytes("iso-8859-1"), "utf-8"));
o(new String(word.getBytes("euc-kr"), "ksc5601"));
o(new String(word.getBytes("euc-kr"), "utf-8"));
o(new String(word.getBytes("euc-kr"), "x-windows-949"));
o(new String(word.getBytes("euc-kr"), "iso-8859-1"));
o(new String(word.getBytes("ksc5601"), "euc-kr"));
o(new String(word.getBytes("ksc5601"), "utf-8"));
o(new String(word.getBytes("ksc5601"), "x-windows-949"));
o(new String(word.getBytes("ksc5601"), "iso-8859-1"));
o(new String(word.getBytes("x-windows-949"), "euc-kr"));
o(new String(word.getBytes("x-windows-949"), "utf-8"));
o(new String(word.getBytes("x-windows-949"), "ksc5601"));
o(new String(word.getBytes("x-windows-949"), "iso-8859-1"));
o 는
java : System.out.println 으로 바꾸면 됨.
jsp : out.println 으로 바꾸면 됨
o(new String(word.getBytes("utf-8"), "ksc5601"));
o(new String(word.getBytes("utf-8"), "x-windows-949"));
o(new String(word.getBytes("utf-8"), "iso-8859-1"));
o(new String(word.getBytes("iso-8859-1"), "euc-kr"));
o(new String(word.getBytes("iso-8859-1"), "ksc5601"));
o(new String(word.getBytes("iso-8859-1"), "x-windows-949"));
o(new String(word.getBytes("iso-8859-1"), "utf-8"));
o(new String(word.getBytes("euc-kr"), "ksc5601"));
o(new String(word.getBytes("euc-kr"), "utf-8"));
o(new String(word.getBytes("euc-kr"), "x-windows-949"));
o(new String(word.getBytes("euc-kr"), "iso-8859-1"));
o(new String(word.getBytes("ksc5601"), "euc-kr"));
o(new String(word.getBytes("ksc5601"), "utf-8"));
o(new String(word.getBytes("ksc5601"), "x-windows-949"));
o(new String(word.getBytes("ksc5601"), "iso-8859-1"));
o(new String(word.getBytes("x-windows-949"), "euc-kr"));
o(new String(word.getBytes("x-windows-949"), "utf-8"));
o(new String(word.getBytes("x-windows-949"), "ksc5601"));
o(new String(word.getBytes("x-windows-949"), "iso-8859-1"));
o 는
java : System.out.println 으로 바꾸면 됨.
jsp : out.println 으로 바꾸면 됨
'Develop > Java(jsp,jmf)' 카테고리의 다른 글
KCP (한국사이버결제) JSP_Linux 모듈 연동 (3) | 2012.03.21 |
---|---|
xml, xsl 에서 사이 띄우기 (스페이스바= ) (0) | 2011.12.13 |
java.lang.IllegalArgumentException: argument type mismatch (0) | 2011.09.20 |
YouTuBe API 사용해서 JSON으로 뽑아오기~ (0) | 2011.07.14 |
JAI(Java Advanced Imaging) 로 썸네일 이미지 만들기 (100%) (2) | 2011.06.14 |
Cause: com.ibatis.common.xml.NodeletException: Error parsing XML. Cause: org.xml.sax.SAXParseException: An invalid XML character (0) | 2011.05.09 |
[APNS] java 로 push notification server 및 클라이언트 구현하기(아이폰 푸시 서버) (0) | 2011.04.12 |
Eclipse build errors - java.lang.object cannot be resolved (0) | 2011.03.28 |