I am writing a program that will output data to a .txt file, that can be read by a person using a program like NotePad. Perhaps not necessarily ASCII, but something that the user can understand.
Which one of these do I use?
- ByteArrayOutputStream
- FileOutputStream
- FilterOutputStream
- ObjectOutputStream
- OutputStream
- PipedOutputStream
I have this assignment that asks me to use one of OutputStream subclasses specifically, so a Writer is not an option.
Overview of the classes
- ByteArrayOutputStream didn't understand it until BalusC gave a more simple description. Apparently it stores things in an array of bytes which makes it unreadable since they are specially bytes.
- FileOutputStream it makes the output into bytes, so it's also unreadable.
- FilterOutputStream I think it transform the data in ways I don't understand. Not good when you just want to write things as you write them in the program.
- ObjectOutputStream according to "Primitive data types can also be written to the stream using the appropriate methods from DataOutput. Strings can also be written using the writeUTF method." and the example provided this might be the answer, but again so much explanation again confuses me.
- OutputStream Don't understand the description at all.
- PipedOutputStream It creates pipes of binary data. What are pipes? not a clue.
Writeras a normal developer would do. I added the homework tag. Now, have you read the javadocs from each one mentioned to learn what each one should be used for? Start here: download.oracle.com/javase/6/docs/api/java/io/… – BalusC Nov 7 '11 at 1:15