Java Convert Byte to String Example

In this article, we will show you how to convert Java wrapper class Byte or primitive type byte to String code examples. There are different ways we can convert Java Byte to String.
In this example, we will demonstrate converting Byte to String in 2 ways.
  1. Convert using String.valueOf(b)
  2. Convert using Byte.toString(b)
/**
 * Class to Convert Byte To String Example
 * @author javaguides.net
 *
 */

public class ConvertByteToStringExamples {
 public static void main(String[] args) {
  /*
   * Method 1: using valueOf() method of String class.
   */
  byte b = 10;
  String strByte = String.valueOf(b);
  System.out.println("Convert byte to string using valueOf method ::" + strByte);

  /*
   * Method 2: using toString() method of Byte class
   */
  String strByte1 = Byte.toString(b);
  System.out.println("Convert Byte to String using Byte.toString method ::" + strByte1);
 }
}
Output:
Convert byte to string using valueOf method ::10
Convert Byte to String using Byte.toString method ::10

Related Java String Conversion Examples

Free Spring Boot Tutorial | Full In-depth Course | Learn Spring Boot in 10 Hours


Watch this course on YouTube at Spring Boot Tutorial | Fee 10 Hours Full Course