Online Java Compiler By
JavaTpoint.com
public class JavaByteDecodeExample1 { public static void main(String[] args) { String str="12"; //decodes a String into a Byte Byte b1=Byte.decode(str); System.out.println(b1); } }
Output