VOOZH about

URL: https://www.geeksforgeeks.org/java/charsetdecoder-detectedcharset-method-in-java-with-examples/

⇱ CharsetDecoder detectedCharset() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

CharsetDecoder detectedCharset() method in Java with Examples

Last Updated : 27 Jun, 2019
The detectedCharset() method is a built-in method of the java.nio.charset.CharsetDecoder class which retrieves the charset that has been detected by this decoder. The default implementation of this method always throws an UnsupportedOperationException. It should be overridden by auto-detecting decoders to return true once the input charset has been determined. Syntax:
public Charset detectedCharset()
Parameters: The function does not accepts any parameter. Return Value: The function returns the charset that has been detected by this decoder. Exception: It throws UnsupportedOperationException if this decoder does not implement an auto-detecting charset and IllegalStateException if insufficient bytes have been read to determine a charset Below is the implementation of the above function: Program 1:
Output:
CharsetDecoder: sun.nio.cs.ext.ISO2022_CN$Decoder@232204a1
java.lang.UnsupportedOperationException
Program 2:
Output:
CharsetDecoder: sun.nio.cs.ext.DoubleByte$Decoder@232204a1
java.lang.UnsupportedOperationException
Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/charset/CharsetDecoder.html#detectedCharset--
Comment