- csq
- the character sequence appended to the target.
- start
- the index of the first char in the character sequence appended to the target.
- end
- the index of the character following the last character of the subsequence appended to the target.
Documentation for this section has not yet been entered.
Type Reason Java.IO.IOException if this writer is closed or another I/O error occurs. Java.Lang.IndexOutOfBoundsException if start > end, start , end or either start or end are greater or equal than the length of csq.
Appends a subsequence of the character sequence csq to the target. This method works the same way as Writer.writer(csq.subsequence(start, end).toString()). If csq is null, then the specified subsequence of the string "null" will be written to the target.