Descripción
Este método codifica esta cadena en una secuencia de bytes utilizando el conjunto de caracteres con nombre, almacenando el resultado en una nueva matriz de bytes.
Sintaxis
Aquí está la sintaxis de este método:
public byte[] getBytes(String charsetName) throws UnsupportedEncodingException
Parámetros
Aquí está el detalle de los parámetros:
Valor devuelto
- Este método devuelve la matriz de bytes resultante.
Ejemplo
import java.io.*;
public class Test {
public static void main(String args[]) {
String Str1 = new String("Welcome to Tutorialspoint.com");
try {
String Str2 = new String(Str1.getBytes( "UTF-8" ));
System.out.println("Returned Value " + Str2 );
Str2 = new String (Str1.getBytes( "ISO-8859-1" ));
System.out.println("Returned Value " + Str2 );
} catch ( UnsupportedEncodingException e) {
System.out.println("Unsupported character set");
}
}
}
Esto producirá el siguiente resultado:
Salida
Returned Value Welcome to Tutorialspoint.com
Returned Value Welcome to Tutorialspoint.com