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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。