El método unmappableCharacterAction() es un método integrado de la clase java.nio.charset.CharsetDecoder que devuelve la acción actual de este decodificador para errores de caracteres no asignables.
Sintaxis :
public CodingErrorAction unmappableCharacterAction()
Parámetros : La función no acepta ningún parámetro.
Valor devuelto: la función devuelve la acción actual de este decodificador para errores de caracteres no asignables.
A continuación se muestra la implementación de la función anterior:
Programa 1:
// Java program to demonstrate // the above function import java.nio.charset.*; import java.util.Iterator; import java.util.Map; public class GFG { public static void main(String[] args) { // Gets the charset Charset charset = Charset.forName("ISO-2022-CN"); // Get the CharsetDecoder CharsetDecoder decoder = charset.newDecoder(); // Prints the CharsetDecoder System.out.println("CharsetDecoder: " + decoder); System.out.println("Current action for " + "unmappable-character errors: " + decoder.unmappableCharacterAction()); } }
Producción:
CharsetDecoder: sun.nio.cs.ext.ISO2022_CN$Decoder@232204a1 Current action for unmappable-character errors: REPORT
Programa 2:
// Java program to demonstrate // the above function import java.nio.charset.*; import java.util.Iterator; import java.util.Map; public class GFG { public static void main(String[] args) { // Gets the charset Charset charset = Charset.forName("x-windows-949"); // Get the CharsetDecoder CharsetDecoder decoder = charset.newDecoder(); // Prints the CharsetDecoder System.out.println("CharsetDecoder: " + decoder); System.out.println("Current action for " + "unmappable-character errors: " + decoder.unmappableCharacterAction()); } }
Producción:
CharsetDecoder: sun.nio.cs.ext.DoubleByte$Decoder@232204a1 Current action for unmappable-character errors: REPORT
Referencia: https://docs.oracle.com/javase/9/docs/api/java/nio/charset/CharsetDecoder.html#unmappableCharacterAction–
Publicación traducida automáticamente
Artículo escrito por ShubhamMaurya3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA