CharsetDecoder reset() método en Java con ejemplos

El método reset() es un método integrado de la clase java.nio.charset.CharsetDecoder que restablece este CharsetDecoder y borra su estado interno.

Sintaxis :

public final CharsetDecoder reset()

Parámetros : La función no acepta ningún parámetro.

Valor de retorno : la función devuelve este CharsetDecoder después de restablecerlo.

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("Before reset: "
                           + decoder);
  
        // Reset the CharsetDecoder
        System.out.println("After reset: "
                           + decoder.reset());
    }
}
Producción:

Before reset: sun.nio.cs.ext.ISO2022_CN$Decoder@232204a1
After reset: sun.nio.cs.ext.ISO2022_CN$Decoder@232204a1

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("Before reset: "
                           + decoder);
  
        // Reset the CharsetDecoder
        System.out.println("After reset: "
                           + decoder.reset());
    }
}
Producción:

Before reset: sun.nio.cs.ext.DoubleByte$Decoder@232204a1
After reset: sun.nio.cs.ext.DoubleByte$Decoder@232204a1

Referencia: https://docs.oracle.com/javase/9/docs/api/java/nio/charset/CharsetDecoder.html#reset–

Publicación traducida automáticamente

Artículo escrito por ShubhamMaurya3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *