
- Java.lang - Home
- Java.lang - Boolean
- Java.lang - Byte
- Java.lang - Character
- Java.lang - Character.Subset
- Java.lang - Character.UnicodeBlock
- Java.lang - Class
- Java.lang - ClassLoader
- Java.lang - Compiler
- Java.lang - Double
- Java.lang - Enum
- Java.lang - Float
- Java.lang - InheritableThreadLocal
- Java.lang - Integer
- Java.lang - Long
- Java.lang - Math
- Java.lang - Number
- Java.lang - Object
- Java.lang - Package
- Java.lang - Process
- Java.lang - ProcessBuilder
- Java.lang - Runtime
- Java.lang - RuntimePermission
- Java.lang - SecurityManager
- Java.lang - Short
- Java.lang - StackTraceElement
- Java.lang - StrictMath
- Java.lang - String
- Java.lang - StringBuffer
- Java.lang - StringBuilder
- Java.lang - System
- Java.lang - Thread
- Java.lang - ThreadGroup
- Java.lang - ThreadLocal
- Java.lang - Throwable
- Java.lang - Void
- Java.lang Package Useful Resources
- Java.lang - Useful Resources
- Java.lang - Discussion
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
Advertisements