
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Convert Byte to String in Java
In Java, there are different ways to convert byte to string.
Using toString() method, you can easily convert byte to string as shown below −
Example
public class Demo { public static void main(String[] args) { byte res = 87; // byte to string System.out.println(Byte.toString(res)); } }
Output
87
In the above example, we have taken a byte value.
byte res = 87;
With that, to convert to string, the method toString() is used as shown below −
Byte.toString(res);
Let us see another example to convert byte to string.
Example
public class Demo { public static void main(String[] args) { byte val = 77; System.out.println(new String(new byte[] {val})); } }
Output
M
Advertisements