[Java - (17) ] String 문자열 원하는 인코딩으로 변환하기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
String proposer = "한글 테스트";
"utf-8 -> euc-kr : " + new String(proposer.getBytes("utf-8"), "euc-kr")); "utf-8 -> ksc5601 : " + new String(proposer.getBytes("utf-8"), "ksc5601"));
"utf-8 -> x-windows-949 : " + new String(proposer.getBytes("utf-8"), "x-windows-949"));
"utf-8 -> iso-8859-1 : " + new String(proposer.getBytes("utf-8"), "iso-8859-1"));
"iso-8859-1 -> euc-kr : " + new String(proposer.getBytes("iso-8859-1"), "euc-kr"));
"iso-8859-1 -> ksc5601 : " + new String(proposer.getBytes("iso-8859-1"), "ksc5601"));
"iso-8859-1 -> x-windows-949: " + new String(proposer.getBytes("iso-8859-1"), "x-windows-949"));
"iso-8859-1 -> utf-8 : " + new String(proposer.getBytes("iso-8859-1"), "utf-8"));
"euc-kr -> utf-8 : " + new String(proposer.getBytes("euc-kr"), "utf-8"));
"euc-kr -> ksc5601 : " + new String(proposer.getBytes("euc-kr"), "ksc5601"));
"euc-kr -> x-windows-949 : " + new String(proposer.getBytes("euc-kr"), "x-windows-949"));
"euc-kr -> iso-8859-1 : " + new String(proposer.getBytes("euc-kr"), "iso-8859-1"));
"ksc5601 -> euc-kr : " + new String(proposer.getBytes("ksc5601"), "euc-kr"));
"ksc5601 -> utf-8 : " + new String(proposer.getBytes("ksc5601"), "utf-8"));
"ksc5601 -> x-windows-949 : " + new String(proposer.getBytes("ksc5601"), "x-windows-949"));
"ksc5601 -> iso-8859-1 : " + new String(proposer.getBytes("ksc5601"), "iso-8859-1"));
"x-windows-949 -> euc-kr : " + new String(proposer.getBytes("x-windows-949"), "euc-kr"));
"x-windows-949 -> utf-8 : " + new String(proposer.getBytes("x-windows-949"), "utf-8"));
"x-windows-949 -> ksc5601 : " + new String(proposer.getBytes("x-windows-949"), "ksc5601"));
"x-windows-949 -> iso-8859-1: " + new String(proposer.getBytes("x-windows-949"), "iso-8859-1"));
|
'◽ Java language > Java' 카테고리의 다른 글
[Java] break를 goto()처럼 쓰는 방법 (루프가 2개 일 때 루프 탈출 위치 정하는 방법) (0) | 2020.11.02 |
---|---|
[Java] String Class "split()" 특수문자(정규식 등) 인식 방법 (0) | 2020.11.02 |
[Java - (18) ] Date 형식의 날짜 비교 (0) | 2020.06.17 |
[Java - (16) ] 특정값 몇개인지 체크 ( StringUtils 이용 ) (0) | 2020.04.29 |
[Java] list 관련 기능 간단 정리. (추가, 삭제, 조회 등) (0) | 2020.04.19 |
[Java - 기본 - (12) ] return(함수 탈출), break(루프 탈출), continue(반복 계속) 차이 정리 (0) | 2020.03.24 |
[Java - 기본 - (11) ] Arraylist의 add와 addall 차이 (0) | 2020.03.16 |