We can make use of the toBinaryString() from the Integer class to convert a byte to binary String in Java.
Let us take a look at a few examples.
Example 1: Convert Single Byte to Binary String
package org.code2care.examples;
public class Example1 {
public static void main(String[] args) {
byte b = 101;
String binaryString = Integer.toBinaryString(b);
System.out.println("Byte: " + b);
System.out.println("Binary String: " + binaryString);
}
}
Output:
Example 2: Convert Byte Array to Binary String
public static void main(String[] args) {
StringBuilder binaryStringBuilder = new StringBuilder();
byte[] byteArray = { 101, 102, 103, 127, -101, 1, 0 };
for (byte b : byteArray) {
binaryStringBuilder.append(Integer.toBinaryString(b & 0xFF));
}
System.out.println("Binary String: " + binaryStringBuilder);
}
Output:
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Convert Java Map Collection Object to JSON String using Jackson
- Java Stream flatmap() Examples
- [Fix] Instant java.time.temporal.UnsupportedTemporalTypeException: Unsupported unit: Years
- How to run Java Unit Test cases with Apache Maven?
- How to check if Java main thread is alive
- [Fix] java: incompatible types: incompatible parameter types in lambda expression error
- Parsing CSV file using Java code example (Comma Separated File)
- Unhandled exception type InterruptedException : Java Threads
- Native getClass() method from java.lang.Object Class Explained with examples.
- Java Jackson ObjectMapper Class with Examples
- Java 8 Streams map() with examples
- Java 8 - Convert List to Map Examples
- IntelliJ: Error: Could not find or load main class, java.lang.ClassNotFoundException
- Java Stream with Multiple Filters Example
- How to Clear StringJoiner in Java 8
- Spring 5 IoC Example with application Context XML (ClassPathXmlApplicationContext) and Gradle.
- How to get end of line (EOL) or new line character \r \n in Java
- Spring Boot CRUD Examples using JDBCTemplate
- Delete a File in Java with Examples
- Implementing Insertion Sort Algorithm in Java Program
- Java JDBC Batch Update Example with PreparedStatement
- Java JDBC Select Multiple Records from table as List using PreparedStatement
- [Hibernate] The method buildSessionFactory() from the type Configuration is deprecated
- How to fix Java HTTP java.net.UnknownHostException
- Java 8 Display time in 12 hour AM PM format
More Posts:
- Implementing Selection Sort Algorithm as Java Program - Java
- How to enable Do Not Disturb (DND) mode in Microsoft Teams - Teams
- eclipse maven m2e : Cannot complete the install - Eclipse
- Copy all .vcf Mobile Contacts files into one .vcf - HowTos
- How to Insert an Inverted Question Mark on Mac ¿ - MacOS
- Fix - zsh: command not found: pip - zsh
- How to Hum a Song to Google to find it out! [Android and iPhone] - Google
- Fix Error 2711 SQL RBS client - The installer has encountered an unexpected error. The specified Feature name ('Docs') not found in Feature table - SharePoint