Java Guava Bytes类

1 什么是Guava Bytes类

Bytes 是原始类型字节的实用程序类。

2 Guava Bytes类的语法

@GwtCompatible
public final class Bytes
   extends Object

3 Guava Bytes类的方法

方法 描述
static List<Byte> asList(byte... backingArray) 返回由指定数组支持的固定大小列表,类似于 Arrays.asList(Object[])。
static byte[] concat(byte[]... arrays) 返回每个提供的数组中组合成单个数组的值。
static boolean contains(byte[] array, byte target) 如果目标作为数组中任何位置的元素存在,则返回 true。
static byte[] ensureCapacity(byte[] array, int minLength, int padding) 返回包含与数组相同的值的数组,但保证具有指定的最小长度。
static int hashCode(byte value) 返回值的哈希码;等于调用((Byte) value).hashCode()的结果。
static int indexOf(byte[] array, byte target) 返回值目标在数组中第一次出现的索引。
static int indexOf(byte[] array, byte[] target) 返回指定目标在数组中第一次出现的起始位置,如果没有出现,则返回 -1。
static int lastIndexOf(byte[] array, byte target) 返回值目标在数组中最后一次出现的索引。
static byte[] toArray(Collection<? extends Number> collection) 返回一个包含集合的每个值的数组,以Number.byteValue()的方式转换为字节值。

5 Guava Bytes类的例子

让我们看一个简单的Guava Bytes类示例。

package com.yiidian;

import com.google.common.primitives.Bytes;

import java.util.List;

public class GuavaTester {
   public static void main(String args[]) {
      GuavaTester tester = new GuavaTester();
      tester.testBytes();
   }

   private void testBytes() {
      byte[] byteArray = {1,2,3,4,5,5,7,9,9};

      //convert array of primitives to array of objects
      List<Byte> objectArray = Bytes.asList(byteArray);
      System.out.println(objectArray.toString());

      //convert array of objects to array of primitives
      byteArray = Bytes.toArray(objectArray);
      System.out.print("[ ");
      
      for(int i = 0; i< byteArray.length ; i++) {
         System.out.print(byteArray[i] + " ");
      }

      System.out.println("]");
      byte data = 5;

      //check if element is present in the list of primitives or not
      System.out.println("5 is in list? " + Bytes.contains(byteArray, data));

      //Returns the index
      System.out.println("Index of 5: " + Bytes.indexOf(byteArray,data));

      //Returns the last index maximum
      System.out.println("Last index of 5: " + Bytes.lastIndexOf(byteArray,data));
   }
}

输出结果为:

 

热门文章

优秀文章