> I am curious as to whether my understanding of the design philosophy
> behind the design of this part of the java API is correct. I think the
[quoted text clipped - 3 lines]
> to read/write things from/to streams, but obvious enough now that's
> just not true.
You're nearly correct.
Readers and Writers manipulate chars under an encoding (UTF-8, ISO8859-2,
etc.), also called "text". Streams manipulate bytes, not necessarily bytes
that make up an arbitrary object. (Most just manipulate byte arrays.) These
data are also called "binary data".
Readers and Writers are wrappers for streams. They apply an encoding to the
data to turn them from text into binary data (in the case of Writers) and from
binary back to text (in the case of Readers). The binary data in turn are run
through the underlying streams.
Character is a Java class. The concept of a class no longer has any meaning
once data are on the stream.

Signature
Lew