- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java Program to convert string to byte
Use the valueOf() method to convert string to byte. Firstly, let us take a string.
String str = "65";
Now, use the valueOf() method to convert string to byte.
byte res = Byte.valueOf(str);
Let us see the complete example.
Example
public class Demo { public static void main(String[] args) { String str = "65"; System.out.println("String: "+str); byte res = Byte.valueOf(str); System.out.println("Byte: "+res); } }
Output
String: 65 Byte: 65
- Related Articles
- Java Program to convert byte to string
- Java Program to convert byte[] array to String
- Java Program to convert String to byte array
- Convert byte to String in Java
- Golang Program to Convert String Value to Byte Value
- Haskell Program to Convert String value to byte Value
- Convert byte Array to Hex String in Java
- Convert Hex String to byte Array in Java
- How to convert hex string to byte Array in Java?
- Convert a String to a byte number in Java
- Java program to convert Byte array to IP Address
- Java Program to convert an UNSIGNED byte to a JAVA type
- How to convert a byte array to hex string in Java?
- How to convert a byte array to a hex string in Java?
- Convert byte primitive type to Byte object in Java

Advertisements