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


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