Java source code examples

Java source code samples. Java code examples.

Convert an binary String to byte value.

          0 votes

The parseByte method of Byte class is used for converting a binary String to primitive byte value.

public class ByteWrapper {
	public static void main(String[] args) {
		String str = "1010";
		byte b = Byte.parseByte(str, 2);
		System.out.println(b);
	}
}

Tags: java.lang

Discuss This Code