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,

Java String getbytes method with charset

String getBytes() method in Java
String getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin) method in Java
Studyopedia Editorial Staff
[email protected]

We work to create programming tutorials for all.

No Comments

Post A Comment