Constructs a new String
by decoding the specified array of
bytes using the specified charset.
The length of the new String
is a function of the charset, and
hence may not be equal to the length of the byte array.
This method always replaces malformed-input and unmappable-character
sequences with this charset's default replacement string. The java.nio.charset.CharsetDecoder
class should be used when more control
over the decoding process is required.
bytes
| The bytes to be decoded into characters | |
charset
| The charset to be used to
decode the bytes |
Diagram: String