14 May byte[] getBytes(String charsetName)
The byte[] getBytes(String charsetName) method in Java encodes this String into a sequence of bytes using the named charset, storing the result into a new byte array.
Syntax
Let us see the syntax,
byte[] getBytes(String charsetName)
Parameters
Let us see the parameters,
- charsetName – name of a supported charset
Example
The following is an example of byte[] getBytes(String charsetName),
import java.io.*;
public class StudyopediaDemo {
public static void main(String args[]) {
boolean result;
String message1 = new String("We provide free learning content!");
try {
String message2 = new String( message1.getBytes( "UTF-8" ));
System.out.println("Result: " + message2);
}
catch (UnsupportedEncodingException e) {
System.out.println("Character Set isn't supported.");
}
}
}
Output
The following is the output,

No Comments