Re: About Encoding

keshlam@us.ibm.com wrote:
> 
>	 The Java libraries have some support for this;
> see the encoding parameter of InputStreamReader, for example. 

... or OutputStreamWriter.  In fact those two classes are the main ones
to know if you're doing I/O of character streams, either to a device or
to a byte buffer in memory.  There are also methods on String that take
an encoding name when generating byte arrays.

- Dave

Received on Monday, 31 January 2000 12:30:51 UTC