使用parseByte()
Java中的方法将String转换为字节。
假设以下是我们的字符串-
String str = “76”;
现在,该parseByte()
方法将字符串转换为字节-
byte val = Byte.parseByte(str);
以下是一个例子-
public class Demo { public static void main(String[] args) throws Exception { String str = "76"; byte val = Byte.parseByte(str); System.out.println(val); } }
输出结果
76