JDK の sun.misc パッケージにはちょっと便利ないろんなクラスがある。 これらは文書化されていないので、いつ変わる(orなくなる)かわからないが、 とりあえず使えそうなのをメモっておこう。 本題に入る前に準備を一つ。 CharacterEncoder は、 byte列を文字列に変換するエンコーダの抽象クラス。 encode( byte[] in ) String encode( byte[] in, OutputStream out ) void throws IOException encode( InputStream in, OutputStream out ) void throws IOException encodeBuffer( byte[] in ) String encodeBuffer( byte[] in, OutputStream out ) voi