VOOZH about

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

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


  • Courses
  • Tutorials
  • Interview Prep

CharsetDecoder malformedInputAction() method in Java with Examples

Last Updated : 27 Jun, 2019
The malformedInputAction() method is a built-in method of the java.nio.charset.CharsetDecoder class which returns this decoder's current action for malformed-input errors. Syntax:
public CodingErrorAction malformedInputAction()
Parameters: The function does not accepts any parameter. Return Value: The function returns this decoder's current action for malformed-input errors. Below is the implementation of the above function: Program 1:
Output:
CharsetDecoder: sun.nio.cs.ext.ISO2022_CN$Decoder@232204a1
Current action for malformed-input errors: REPORT
Program 2:
Output:
CharsetDecoder: sun.nio.cs.ext.DoubleByte$Decoder@232204a1
Current action for malformed-input errors: REPORT
Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/charset/CharsetDecoder.html#malformedInputAction--
Comment