- in
- the input buffer.
Documentation for this section has not yet been entered.
Type Reason Java.Lang.IllegalStateException if another decoding operation is ongoing. Java.Nio.Charset.MalformedInputException if an illegal input byte sequence for this charset was encountered, and the action for malformed error is CodingErrorAction.Report Java.Nio.Charset.UnmappableCharacterException if a legal but unmappable input byte sequence for this charset was encountered, and the action for unmappable character error is CodingErrorAction.Report. Unmappable means the byte sequence at the input buffer's current position cannot be mapped to a Unicode character sequence. Java.Nio.Charset.CharacterCodingException if another exception happened during the decode operation.
This is a facade method for the decoding operation.
This method decodes the remaining byte sequence of the given byte buffer into a new character buffer. This method performs a complete decoding operation, resets at first, then decodes, and flushes at last.
This method should not be invoked while another decode operation is ongoing.