Abstract class for writing to character streams. The only methods that a subclass must implement are write(string, number, number), flush(), and close(). Most subclasses, however, will override some of the methods defined here in order to provide higher efficiency, additional functionality, or both.
Abstract class for writing to character streams. The only methods that a subclass must implement are
write(string, number, number)
,flush()
, andclose()
. Most subclasses, however, will override some of the methods defined here in order to provide higher efficiency, additional functionality, or both.See java.io.Writer for full documentation