Guava庫中Bytes類的toArray()方法用於將作為參數傳遞給此方法的字節值轉換為Byte Array。這些字節值作為Collection傳遞給此方法。此方法返回一個Byte數組。
用法:
public static byte[] toArray(Collection<? extends Number> collection)
參數:此方法接受強製性參數集合,該參數集合是要轉換為Byte數組的字節值的集合。
返回值:此方法以相同的順序返回包含與集合相同的值的字節數組。
異常:如果傳遞的集合或其任何元素為null,則此方法將引發NullPointerException。
以下示例程序旨在說明toArray()方法的使用:
範例1:
// Java code to show implementation of
// Guava's Bytes.toArray() method
import com.google.common.primitives.Bytes;
import java.util.Arrays;
import java.util.List;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a List of Bytes
List<Byte> myList
= Arrays.asList((byte)1,
(byte)2,
(byte)3,
(byte)4,
(byte)5);
// Using Bytes.toArray() method to convert
// a List or Set of Byte to an array
// of Byte
byte[] arr = Bytes.toArray(myList);
// Displaying an array containing each
// value of collection,
// converted to a byte value
System.out.println(Arrays.toString(arr));
}
}
輸出:
[1, 2, 3, 4, 5]
範例2:
// Java code to show implementation of
// Guava's Bytes.toArray() method
import com.google.common.primitives.Bytes;
import java.util.Arrays;
import java.util.List;
class GFG {
// Driver's code
public static void main(String[] args)
{
try {
// Creating a List of Bytes
List<Byte> myList
= Arrays.asList((byte)2,
(byte)4,
null);
// Using Bytes.toArray() method
// to convert a List or Set of Byte
// to an array of Byte.
// This should raise "NullPointerException"
// as the collection contains
// "null" as an element
byte[] arr = Bytes.toArray(myList);
// Displaying an array containing each
// value of collection,
// converted to a byte value
System.out.println(Arrays.toString(arr));
}
catch (Exception e) {
System.out.println(e);
}
}
}
輸出:
java.lang.NullPointerException
相關用法
- Java Guava Doubles.min()用法及代碼示例
- Java Guava Doubles.contains()用法及代碼示例
- Java Guava Floats.contains()用法及代碼示例
- Java Guava Bytes.contains()用法及代碼示例
- Java Guava Longs.contains()用法及代碼示例
- Java Guava Shorts.min()用法及代碼示例
- Java Guava Longs.min()用法及代碼示例
- Java Guava Chars.min()用法及代碼示例
- Java Guava Floats.min()用法及代碼示例
- Java Guava Longs.max()用法及代碼示例
- Java Guava Doubles.max()用法及代碼示例
- Java Guava Chars.max()用法及代碼示例
- Java Guava Floats.max()用法及代碼示例
- Java Guava Booleans.contains()用法及代碼示例
- Java Guava Shorts.contains()用法及代碼示例
注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 Java Guava | Bytes.toArray() method with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。