what is the different between byte stream and character stream?

J

Joshua Cranmer

dolphin said:
Hi !what is the different between byte stream and character stream?
Read the javadocs for java.io.InputStream, java.io.Reader, and probably
the package for java.io as well.
 
T

Thomas Kellerer

dolphin wrote on 17.03.2007 14:37:
Hi !what is the different between byte stream and character stream?
A byte stream is for bytes (raw data) and a character stream is for character
data. As simple as that.

Your questions seems to indicate that you think a byte and a character is the
same. It is not.
 
L

Lew

Thomas said:
dolphin wrote on 17.03.2007 14:37:
A byte stream is for bytes (raw data) and a character stream is for character
data. As simple as that.

Your questions seems to indicate that you think a byte and a character is the
same. It is not.

There is also Object{Input|Output}Stream which is for Objects, ...

When you get into java.nio you have Buffer and its type-specific descendants.

-- Lew
 
M

Mark Space

dolphin said:
Hi !what is the different between byte stream and character stream?

A byte stream is just that -- raw bytes.

A character stream is for a given character set. It could be fixed
width characters (one or two bytes) or some form of variable width like
UTF-8. I think Java uses variable width internally, but it has readers
for many different character streams built into the IO subsystem.
 
T

Thomas Fritsch

Thomas said:
dolphin wrote on 17.03.2007 14:37:


A byte stream is for bytes (raw data) and a character stream is for character
data. As simple as that.

Your questions seems to indicate that you think a byte and a character is the
same. It is not.
Additional note to the OP:
a byte is of range [-128...127], a character is of range [0...65535].
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,056
Latest member
GlycogenSupporthealth

Latest Threads

Top