Character Stream Flashcards
character stream topics
Reader/Writer class
abstract classes
define basica I/O methods like read, write, reset, close
filereader/filewriter
subclass of inputstreamwriter/reader
inputstreamreader/writer
translates between byte and character streams
Chararrayreader/writer how does it process
processes chatracter array like a file.
useful if data course uncertain if entered or from a file
pushbackreader
allows “unreading” to pushback a character into the stream, but does not affect the underlying file
T/f does PrintWriter class provide the printf() functionality?
yes
What is object serialization?
used for object file i/o and transmiting objects over network
transforms objects into byte streams and bytestreams into objects
whats objectunpyutstream and objectOutputStream?
input is to convert from byte stream into object
output is to convert object to byte stream
objectinput and object output interfaces?
required for object i/o