Thursday, July 4, 2024
HomeLanguagesJavaCharsetEncoder malformedInputAction() method in Java with Examples

CharsetEncoder malformedInputAction() method in Java with Examples

The malformedInputAction() method is a built-in method of the java.nio.charset.CharsetEncoder returns this encoder’s current action for malformed-input errors. The CodingErrorAction thus returned are of three types IGNORE, REPLACE and REPORT.

Syntax:

public CodingErrorAction malformedInputAction()

Parameters: The function does not accepts any parameter.

Return Value: The function returns the current malformed-input action, which is never null.

Below is the implementation of the above function:

Program 1:




// Java program to implement
// the above function
import java.nio.CharBuffer;
import java.nio.charset.Charset;
import java.nio.charset.CharsetEncoder;
  
public class Main {
    public static void main(String[] args) throws Exception
    {
        // Gets the encoder
        CharsetEncoder encoder = Charset.forName("UTF16").newEncoder();
  
        // Prints CodingErrorAction
        System.out.println(encoder.malformedInputAction());
    }
}


Output:

REPORT

Program 2:




// Java program to implement
// the above function
import java.nio.CharBuffer;
import java.nio.charset.Charset;
import java.nio.charset.CharsetEncoder;
  
public class Main {
    public static void main(String[] args) throws Exception
    {
        // Gets the encoder
        CharsetEncoder encoder = Charset.forName("US-ASCII").newEncoder();
  
        // Prints CodingErrorAction
        System.out.println(encoder.malformedInputAction());
    }
}


Output:

REPORT

Reference: https://docs.oracle.com/javase/10/docs/api/java/nio/charset/CharsetEncoder.html#malformedInputAction()

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments