CharsetDecoder.charset() es un método incorporado en Java de la clase CharsetDecoder que devuelve el juego de caracteres que creó este decodificador.
Sintaxis:
public final Charset charset()
Parámetro: La función no acepta ningún parámetro.
Valor de retorno: la función devuelve el conjunto de caracteres del decodificador.
El programa a continuación demuestra la función mencionada anteriormente:
Programa 1:
// Java program below demonstrate // CharsetDecoder.charset function import java.nio.charset.Charset; import java.nio.charset.CharsetDecoder; public class Main { public static void main(String[] argv) throws Exception { Charset charset = Charset.forName("ISO-8859-1"); // initialising CharsetDecoder cd CharsetDecoder cd = charset.newDecoder(); // print charset of decoder cd System.out.println(cd.charset()); } }
Producción:
ISO-8859-1
Programa 2:
// Java program below demonstrate // CharsetDecoder.charset function import java.nio.charset.Charset; import java.nio.charset.CharsetDecoder; public class Main { public static void main(String[] argv) throws Exception { Charset charset = Charset.forName("ISO-8859-2"); // initialising CharsetDecoder cd CharsetDecoder cd = charset.newDecoder(); // print charset of decoder cd System.out.println(cd.charset()); } }
Producción:
ISO-8859-2
Publicación traducida automáticamente
Artículo escrito por Twinkl Bajaj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA