The valueOf method of Byte class is used for converting a octal String to Byte object.
public class ByteWrapper {
public static void main(String[] args) {
String str = "7";
Byte objByte = Byte.parseByte(str, 8);
System.out.println(objByte);
}
}
