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


Java Byte parseByte()用法及代碼示例


Java Byte 類的 parseByte() 方法將字符串參數解析為有符號十進製。除了第一個字符可以是 ASCII 減號或加號外,字符串中的所有字符都應該是十進製數字。

第二個參數將指定的字符串參數解析為指定基數中的有符號字節。

用法:

public static byte parseByte(String s) throws NumberFormatException 
public static byte parseByte(String s, int radix) throws NumberFormatException

參數:

參數 's' 和 'radix' 表示要解析的字符串和解析 s 時要使用的基數。

拋出

parseByte() 方法拋出:

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

返回值

此方法返回由十進製參數表示的字節值。

例子1

public class JavaByteParseByteExample1 {
    public static void main(String[] args) {
        String str="-8";
        int val=Byte.parseByte(str);
        System.out.println(val);
    }
}

輸出:

-8

例子2

public class JavaByteParseByteExample2 {
    public static void main(String[] args) throws NumberFormatException {
        String str="67";
        //throws an exception if the radix is less than zero
        int radix=0;
        int val=Byte.parseByte(str,radix);
        System.out.println(val);
    }
}

輸出:

Exception in thread "main" java.lang.NumberFormatException:radix 0 less than Character.MIN_RADIX
	at java.lang.Integer.parseInt(Integer.java:546)
	at java.lang.Byte.parseByte(Byte.java:149)
	at com.JavaTpoint.JavaByteParseByteExample2.main(JavaByteParseByteExample2.java:8)

例子3

public class JavaByteParseByteExample3 {
    public static void main(String[] args) throws NumberFormatException {
        //the string shout be a byte number
        String str="35";
        int radix=Character.MAX_RADIX;
        int val=Byte.parseByte(str,radix);
        System.out.println(val);
    }
}

輸出:

113

示例 4

public class JavaByteParseByteExample4 {
    public static void main(String[] args) throws NumberFormatException {
        String str="null";
        int radix=Character.MAX_RADIX;
        System.out.println(radix);
        int val=Byte.parseByte(str,radix);
        System.out.println(val);
    }
}

輸出:

36
Exception in thread "main" java.lang.NumberFormatException:Value out of range. Value:"null" Radix:36
	at java.lang.Byte.parseByte(Byte.java:151)
	at com.JavaTpoint.JavaByteParseByteExample4.main(JavaByteParseByteExample4.java:8)





相關用法


注:本文由純淨天空篩選整理自 Java Byte parseByte() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。