Which class should be used in situations that require writing characters rather than bytes?

link|improve this question

67% accept rate
feedback

3 Answers

up vote 6 down vote accepted

PrintWriter will be useful

http://download.oracle.com/javase/1.4.2/docs/api/java/io/PrintWriter.html

link|improve this answer
4  
PrintWriter is usually a bad idea as it swallows exceptions. Writer is the main abstraction to focus on. – Jon Skeet Jan 14 '11 at 13:07
feedback

Please take a look at java.io.Writer and subclasses.

link|improve this answer
feedback

An important thing to know about I/O in Java is that streams (InputStream and OutputStream etc.) are used for reading and writing binary data (you read or write bytes exactly as they are in the file), and readers and writers (Reader and Writer etc.) are for reading and writing characters.

Readers and writers are a layer on top of streams. A Reader interprets the bytes from an InputStream using a character encoding (such as UTF-8, ISO-8859-1, US-ASCII) to convert them into characters, and a Writer uses a character encoding to turn characters into bytes.

link|improve this answer
Not exactly. Readers and Writers are not directly related to streams. Only InputStreamReader and OutputStreamWriter connect streams with reader/writers with the help of encodings. – Mike L. Jan 15 '11 at 12:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.