Difference between Reader/Writer and InputStream/Output
Stream?
Answers were Sorted based on User's Feedback
Answer / janet
The Reader/Writer class is character-oriented and the
InputStream/OutputStream class is byte-oriented.
| Is This Answer Correct ? | 168 Yes | 7 No |
Answer / ravikiran(aptech mumbai)
Reaer/writer belongs to the charecter stream
I/P and O/P belongs to the byte stream
| Is This Answer Correct ? | 75 Yes | 15 No |
Answer / rohit rajput
reader/writer support only cahracter and input/output
stream support only bytes input stram and the java reader
class has only one differnce and that is input stream only
support bytes and the reader class only supports the
character.
| Is This Answer Correct ? | 53 Yes | 8 No |
Answer / paletipatisrinu
These are IO streams but difference their
InputStream/OutputStreams class are byte-oriented
streams.this streams read and write in byte oriented.
InputStream/OutputStreams are never support unicode characters.
Reaer/writer class are belongs to the charecter stream
this streams read and write in character oriented Streams .
Reaer/writer are never supports unicode characters.
| Is This Answer Correct ? | 40 Yes | 10 No |
Answer / geetha
The reader/writer is character oriented, and the
input/output stream is byte oriented.
| Is This Answer Correct ? | 17 Yes | 2 No |
Answer / karan
The Reader/Writer class hierarchy is character-oriented, and
the Input Stream/Output Stream class hierarchy is byte-oriented.
Basically there are two types of streams.Byte streams that
are used to handle stream of bytes and character streams for
handling streams of characters.In byte streams input/output
streams are the abstract classes at the top of
hierarchy,while writer/reader are abstract classes at the
top of character streams hierarchy.
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / karpagam
reader and writer is related to character, and input and
output is related to byte.
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / ajaal kujaal
reader and writer belongs to cd drive where inputstream and
outputstream belongs to USB drive.
| Is This Answer Correct ? | 13 Yes | 47 No |
What are the Object and Class that classes used for?
Why java is considered as platform independent?
Difference between arraylist and vector.
What do you mean by append?
Is main a function?
23. Storage space in java is of the form Stack Queue Heap List 24. What is java code embedded in a web page known as Applets Servlets scriptlets snippets 25. Which of the following attributes are compulsory with an <applet> tag?. code,height & width. 26. What does 'CODEBASE' in an applet tag specify?. Files absolute path.
What are the advantages of defining packages in java?
what is the difference between sleep() and Wait()?
4.1 Supply contracts (in the form of comments specifying pre- and post conditions) for the enqueue() method of the LinkedQueue class given in the Appendix. (2) 4.2 Let Thing be a class which is capable of cloning objects, and consider the code fragment: Thing thing1 = new Thing(); //(1) Thing thing2 = thing1; //(2) Thing thing3 = (Thing) thing1.clone(); //(3) Explain how the objects thing2 and thing3 differ from each other after execution of the statements. (
What are register variables what are the advantages?
What is a newline character in java?
Can a final method be overloaded?