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,
byte getBytes()
Parameters
The method has no parameters.
Example
The following is an example of getBytes() method,
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