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


Java Java.lang.Byte.decode()用法及代碼示例



描述

這個java.lang.Byte.decode(String nm)將字符串解碼為字節。接受以下語法給出的十進製、十六進製和八進製數 -

可解碼字符串

  • 標誌opt十進製數字
  • 標誌opt0x 十六進製數字
  • 標誌opt0X 十六進製數字
  • 標誌opt# 十六進製數
  • 標誌opt0 八進製數字

標誌

  • &加;

  • -

跟隨可選符號和/或基數說明符("0x"、"0X"、"#" 或前導零)的字符序列被 Byte.parseByte 方法解析為具有指示的基數(10、16 或 8)。

此字符序列必須表示正值,否則將拋出 NumberFormatException。如果指定字符串的第一個字符是減號,則結果否定。字符串中不允許有空格字符。

聲明

以下是聲明java.lang.Byte.decode()方法

public static Byte decode(String nm)throws NumberFormatException

參數

nm- 要解碼的字符串

返回值

此方法返回一個 Byte 對象,其中包含由 nm 表示的字節值。

異常

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

示例

下麵的例子展示了 lang.Byte.decode() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class ByteDemo {

   public static void main(String[] args) {

      // create 4 Byte objects
      Byte b1, b2, b3, b4;

      /**
       *  static methods are called using class name. 
       *  decimal value is decoded and assigned to Byte object b1
       */
      b1 = Byte.decode("100");

      // hexadecimal values are decoded and assigned to Byte objects b2, b3
      b2 = Byte.decode("0x6b");
      b3 = Byte.decode("-#4c");

      // octal value is decoded and assigned to Byte object b4
      b4 = Byte.decode("0127");

      String str1 = "Byte value of decimal 100 is " + b1;
      String str2 = "Byte value of hexadecimal 6b is " + b2;
      String str3 = "Byte value of hexadecimal -4c is " + b3;
      String str4 = "Byte value of octal 127 is " + b4;

      // print b1, b2, b3, b4 values
      System.out.println( str1 );
      System.out.println( str2 );
      System.out.println( str3 );
      System.out.println( str4 );
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

Byte value of decimal 100 is 100
Byte value of hexadecimal 6b is 107
Byte value of hexadecimal -4c is -76
Byte value of octal 127 is 87

相關用法


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