- All Superinterfaces:
AutoCloseable,Closeable,Flushable
- All Known Implementing Classes:
FastBufferedWriter,UnbufferedWriter
This interface extends the basic functionality provided by
Writer
with the addition of the endRecord() method.-
Method Details
-
write
Writes a single character.- Parameters:
c- the character to write- Throws:
IOException- See Also:
-
write
Writes a portion of a string.- Parameters:
value- the string to writeoff- the offset from which to start writing characterslen- the number of characters to write- Throws:
IOException- See Also:
-
write
Writes a portion of an array of characters.- Parameters:
value- the array of characters to writeoff- the offset from which to start writing characterslen- the number of characters to write- Throws:
IOException- See Also:
-
endRecord
Called to indicate that the current record is complete.- Throws:
IOException- if an I/O error occurs
-