[Java] String Encoding Dev/java/flex/jsp/js JAEYOUNG CHOI 님의 블로그에서 무단 펌한 글이다. 모든 String 은 기본적으로 file.encoding 을 따라간다. - API - string .getBytes( charset ) 해당 string 의 charset 인코딩 바이트 배열을 얻는다. (다른 인코딩의 Writer 등에 바이트를 써야할 때 사용) new String( bytes ) 해당 bytes 를 file.encoding 인코딩 바이트 배열로 보고 string 을 만들어낸다. new String( bytes , charset ) 해당 bytes 를 charset 인코딩 바이트 배열로 보고 string 을 만들어낸다. 솔린IX 님의 블로그에서 무단 펌한 글이다. 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(...