Friday, September 5, 2025
HomeLanguagesJavaCharsetEncoder unmappableCharacterAction() method in Java with Examples

CharsetEncoder unmappableCharacterAction() method in Java with Examples

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

Syntax:

public CodingErrorAction unmappableCharacterAction()

Parameters: The function does not accepts any parameter.

Return Value: The function returns the current unmappable-character 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.unmappableCharacterAction());
    }
}


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.unmappableCharacterAction());
    }
}


Output:

REPORT

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

RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6750 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS