当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Byte decode()用法及代码示例


Java Byte 类的 decode() 方法将 String 解码为 Byte。它可以接受十进制、十六进制和八进制数。

用法:

public static Byte decode(String nm) throws NumberFormatException

参数:

参数 'nm' 表示要解码的字符串。

抛出:

decode() 方法抛出:

NumberFormatException- 如果字符串不包含可解析的字节。

返回值

此方法返回一个 Byte 对象,其中包含字符串 'nm' 的字节值。

例子1

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);
    }
}

输出:

12

例子2

public class JavaByteDecodeExample2 {
    public static void main(String[] args) {
        //for null value it will give an exception
        String str="null";
        Byte b1=Byte.decode(str);
        System.out.println(b1);
    }
}

输出:

Exception in thread "main" java.lang.NumberFormatException:For input string:"null"
	at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
	at java.lang.Integer.parseInt(Integer.java:580)
	at java.lang.Integer.valueOf(Integer.java:740)
	at java.lang.Integer.decode(Integer.java:1197)
	at java.lang.Byte.decode(Byte.java:277)
	at com.JavaTpoint.JavaByteDecodeExample2.main(JavaByteDecodeExample2.java:6)

例子3

public class JavaByteDecodeExample3 {
    public static void main(String[] args) {
        //for Min.VALUE value it will give an NumberFormatException
        String str="Byte.MIN_VALUE";
        Byte b1=Byte.decode(str);
        System.out.println(b1);
        Byte b2=Byte.MIN_VALUE;
        System.out.println(b2);
    }
}

输出:

Exception in thread "main" java.lang.NumberFormatException:For input string:"Byte.MIN_VALUE"
	at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
	at java.lang.Integer.parseInt(Integer.java:580)
	at java.lang.Integer.valueOf(Integer.java:740)
	at java.lang.Integer.decode(Integer.java:1197)
	at java.lang.Byte.decode(Byte.java:277)
	at com.JavaTpoint.JavaByteDecodeExample3.main(JavaByteDecodeExample3.java:7)





相关用法


注:本文由纯净天空筛选整理自 Java Byte decode() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。