
In order to convert a String to byte[] array in Java make use of the .getBytes() method from the String class,
Example:public class JavaStringToByteArray {
public static void main(String[] args) {
String string = "Hello World!";
byte[] byteArr = string.getBytes();
for(int i = 1;i <byteArr.length; i++) {
System.out.print(byteArr[i]+" ");
}
}
}
Output:
101 108 108 111 32 87 111 114 108 100 33 %
To convert byte[] array to String: https://code2care.org/java/convert-byte-arrry-to-string-in-java
-
Have Questions? Post them here!
More Posts related to Java,
- How to Get List of All Country Codes in Java Using Locale Class
- Unsupported major.minor version 52.0 in java
- Java - How to set custom thread name?
- Get the current timestamp in Java
- Java Spring Boot 3 Web Hello World with Gradle in IntelliJ
- [fix] NullPointerException Cannot Invoke findById because Repository is null - Java Spring
- java: unclosed string literal [Error]
- Convert Java Byte Array to String with code examples
- Error: Can not find the tag library descriptor for
- Java 8 - Convert List to Map Examples
- Java - Calculate time taken for the code to execute in milliseconds or nanoseconds
- Fix java.net.ProtocolException: Invalid HTTP method
- Java: Convert Stream to List
- Java equals method - Tutorial
- List of Java JDBC Database Driver Jars, Classes and URLs Details
- Read YAML file Java Jackson Library
- How to display Java Date Time timezone GMT/UTC offset using SimpleDateFormat
- List of Java Keywords
- Enable JSON Pretty Print in Java Jackson
- How to Word-Warp Console logs in IntelliJ
- Convert Map to List in Java 8 using Stream API
- Create a Directory using Java Code
- Ways to Convert Integer or int to Long in Java
- [Program] How to read three different values using Scanner in Java
- Java JDBC Example with Oracle Database Driver Connection
More Posts:
- Install Docker for Mac using Home-brew Cask - Docker
- [Fix] Restricted View permission level missing in SharePoint Online site library - SharePoint
- bash get year 2021 calendar - Bash
- Android Studio 4.2 Canary 1 now available - Android-Studio
- Fail to connect to camera service Android java RuntimeException - Android
- MySQL: Error Code: 1175 You are using safe update mode - MySQL
- How to place two div elements next to each other - CSS
- Enable Spellcheck in eclipse workspace - Eclipse