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,
1 2 3 |
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),
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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