Languages
[Edit]
EN

Java - convert String to byte

12 points
Created by:
Root-ssh
175400

In Java, we can convert String to byte in couple of different ways.

Short solutions:

// solution 1
byte num1 = Byte.parseByte("31");

// solution 2
Byte num2 = Byte.valueOf("31");

// solution 3
Byte num3 = new Byte("31");

1. Using Byte.parseByte()

public class Example1 {

    public static void main(String[] args) {
        String str = "31";
        byte num = Byte.parseByte(str);
        System.out.println(num); // 31
    }
}

Output:

31

2. Using Byte.valueOf()

public class Example2 {

    public static void main(String[] args) {
        String str = "31";
        Byte num = Byte.valueOf(str);
        System.out.println(num); // 31
    }
}

Output:

31

3. Using constructor - new Byte(String s)

public class Example3 {

    public static void main(String[] args) {
        String str = "31";
        Byte num = new Byte(str);
        System.out.println(num); // 31
    }
}

Output:

31

 

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Java - String conversion

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join