모든 String 은 기본적으로 file.encoding 을 따라간다.
- API -
string.getBytes(charset)
해당 string 의 charset 인코딩 바이트 배열을 얻는다.
(다른 인코딩의 Writer 등에 바이트를 써야할 때 사용)
new String(bytes)
해당 bytes 를 file.encoding 인코딩 바이트 배열로 보고 string 을 만들어낸다.
new String(bytes, charset)
해당 bytes 를 charset 인코딩 바이트 배열로 보고 string 을 만들어낸다.
Thursday, June 11, 2009
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment