본문 바로가기
Web Program/Java Lecture

한글처리

by 현이빈이 2008. 8. 13.
반응형
public static String toKor(String str) {
   if (str==null) return ;
   
   try {
    str=new String (str.getBytes(8859_1),KSC5601);
   } catch (Exception ex) {
    System.out.println(Exception ex:+ex);
   } return str;
  } 
반응형