A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/java/lang/string_getbytes_string.htm below:

Java.lang.String.getBytes() Method

Java.lang.String.getBytes() Method Description

The java.lang.String.getBytes(String charsetName) method encodes this String into a sequence of bytes using the named charset, storing the result into a new byte array.

Declaration

Following is the declaration for java.lang.String.getBytes() method

public byte[] getBytes(String charsetName) throws UnsupportedEncodingException
Parameters

charset − This is the name of a supported charset.

Return Value

This method returns the resultant byte array.

Exception

UnsupportedEncodingException − If the named charset is not supported.

Example

The following example shows the usage of java.lang.String.getBytes() method.

package com.tutorialspoint;

import java.lang.*;

public class StringDemo {

   public static void main(String[] args) throws Exception {
  
      // string with numbers and some special characters    
      String str = "!$0123@";
    
      // byte array with charset
      byte bval[] = str.getBytes("UTF8");
  
      // prints the byte array
      for (int i = 0; i < bval.length; i++) {
         System.out.println(bval[i]);
      }
   }
}

Let us compile and run the above program, this will produce the following result −

33
36
48
49
50
51
64

java_lang_string.htm


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4