The
replacement() method is a built-in method of the
java.nio.charset.CharsetDecoder class returns this decoder's replacement value. The replacement value needs to be set inorder to get a valid replacement value.
Syntax:
public final Charset replacement()
Parameters: The function does not accepts any parameter.
Return Value: The function returns this decoder's replacement value.
Below is the implementation of the above function:
Program 1:
Output:
CharsetDecoder: sun.nio.cs.ext.ISO2022_CN$Decoder@232204a1
Replacement Value: ?
Program 2: