當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。