14 May String getBytes() method in Java
The byte getBytes() method in Java encodes this String into a sequence of bytes using the platform’s default charset, storing the result into a new byte array.
Syntax
Let us see the syntax,
1 2 3 |
byte getBytes() |
Parameters
The method has no parameters.
Example
The following is an example of getBytes() method,
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import java.io.*; public class StudyopediaDemo { public static void main(String args[]) { boolean result; String message1 = new String("We provide free learning content!"); String message2 = new String( message1.getBytes()); System.out.println("Result: " + message2); } } |
Output
The following is the output,
No Comments