728x90
인코딩 변환
public static void charSet(String str_kr) throws UnsupportedEncodingException{
String charset[] = {"euc-kr", "ksc5601", "iso-8859-1", "8859_1", "ascii", "UTF-8"};
for(int i=0; i<charset.length ; i++){
for(int j=0 ; j<charset.length ; j++){
if(i==j) continue;
System.out.println(charset[i]+" : "+charset[j]+" :"+new String(str_kr.getBytes(charset[i]),charset[j]));
}
}
}
==> 결과 : 정상적으로 변환되는 값을 찾아 적용하기!!!
728x90
'Java' 카테고리의 다른 글
mssql 컬럼추가 (0) | 2020.05.11 |
---|---|
object to .class (0) | 2016.08.25 |
list 재정렬 (0) | 2016.08.10 |
개발 참고 (0) | 2016.07.05 |
날짜 시간계산 (0) | 2016.07.05 |