Returns a new print stream object.
Syntax
PrintStream( outputstream )
PrintStream( outputstream , boolean )
Parameters
outputstream
|
the output stream object to use.
|
boolean
|
whether to automatically flush the print stream object on newline.
|
Returns
printstream
|
a new print stream object.
|
Example
os = FileOutputStream( outputFile )
ps = PrintStream( os )
|