The
isAutoDetecting() method is a built-in method of the
java.nio.charset.CharsetDecoder class which tells whether or not this decoder implements an auto-detecting charset.
Syntax:
public boolean isAutoDetecting()
Parameters: The function does not accepts any parameter.
Return Value: The function returns a boolean value stating if this CharsetDecoder implements ab auto-detecting charset.
Below is the implementation of the above function:
Program 1:
Output:
CharsetDecoder: sun.nio.cs.ext.ISO2022_CN$Decoder@232204a1
Is CharsetDecoder auto-detecting: false
Program 2: