位置:首頁 > Java技術 > java.lang > java.lang.Byte.parseByte(String s, int radix)方法實例

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