java.lang.Byte.parseByte(String s, int radix)方法实例
java.lang.Byte.parseByte(String s, int radix) 解析字符串参数作为第二个参数指定的基数符号的字节。
字符串中的字符必须是除了第一个字符为ASCII字符减号数字的指定基数的,(由Character.digit(CHAR,INT)是否返回非负值决定)' - '(' u002D')来指示一个负值或一个ASCII加号“+”(' u002B')来表示正值。返回得到的字节值。
如果有下列情况发生NumberFormatException类型的异常被抛出:
-
第一个参数是null或零长度的字符串。
-
基数小于Character.MIN_RADIX或大于Character.MAX_RADIX。
-
字符串的任何字符不是指定基数的数字,除了第一个字符可能是一个减号' - '(' u002D')或加号'+'(' u002B')提供的字符串长度比1长以上。
-
用字符串表示的值不是byte类型的值。
声明
以下是java.lang.Byte.parseByte()方法的声明
public static byte parseByte(String s, int radix) throws NumberFormatException
参数
-
s - 要分析包含字节表示一个字符串
-
radix - 使用的基数当解析s
返回值
此方法将返回由指定基数的字符串参数表示的字节值。
异常
-
NumberFormatException - 如果字符串中不包含一个可分析的字节。
例子
下面的例子显示了lang.Byte.parseByte()方法的使用。
package com.yiibai; import java.lang.*; public class ByteDemo { public static void main(String[] args) { // create 2 byte primitives bt1, bt2 byte bt1, bt2; // create and assign values to String's s1, s2 String s1 = "123"; String s2 = "-1a"; // create and assign values to int r1, r2 int r1 = 8; // represents octal int r2 = 16; // represents hexadecimal /** * static method is called using class name. Assign parseByte * result on s1, s2 to bt1, bt2 using radix r1, r2 */ bt1 = Byte.parseByte(s1, r1); bt2 = Byte.parseByte(s2, r2); String str1 = "Parse byte value of " + s1 + " is " + bt1; String str2 = "Parse byte value of " + s2 + " is " + bt2; // print bt1, bt2 values System.out.println( str1 ); System.out.println( str2 ); } }
让我们来编译和运行上面的程序,这将产生以下结果:
Parse byte value of 123 is 83 Parse byte value of -1a is -26