Q:

Java program to convert byte into the string

belongs to collection: Java Conversion Programs

0

Java program to convert byte into the string

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to convert the byte into the string is given below. The given program is compiled and executed successfully.

// Java program to convert byte 
// into the string

import java.util.Scanner;

public class Main {
  public static void main(String[] args) {
    Scanner X = new Scanner(System.in);
    String str;
    byte bytVal = 0;

    System.out.print("Enter byte value: ");
    bytVal = X.nextByte();

    //Convert byte value into string.
    str = Byte.toString(bytVal);

    System.out.println("String value: " + str);
  }
}

Output:

Enter byte value: 124
String value: 124

Explanation:

In the above program, we imported "java.util.Scanner" to read input from the user. And, created a Main class that contains a method main().

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java program to convert a short integer into a str... >>
<< Java program to convert a string into a short inte...