show/hide this revision's text 2 added 44 characters in body

There are some built in functions to do this. The main class involved is CharsetEncoder, which is part of the nio package. A simpler way is String.getBytes(Charsetcharset) that can be sent to a ByteArrayOutputStream.

show/hide this revision's text 1

There are some built in functions to do this. The main class involved is CharsetEncoder, which is part of the nio package. A simpler way is String.getBytes(Charset charset) that can be sent to a ByteArrayOutputStream.