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,

Java String getbytes method

String equalsIgnoreCase(String anotherString) method in Java
byte[] getBytes(String charsetName)
Studyopedia Editorial Staff
[email protected]

We work to create programming tutorials for all.

No Comments

Post A Comment