Java Random NextBytes()方法及示例
随机类 的 nextBytes() 方法将生成的随机字节放入一个用户提供的字节数组中。
语法
public void nextBytes(byte[] bytes)
参数: 该函数接受一个参数 byte ,它是一个非空的字节数组,用来放置随机字节。
返回值: 该方法没有返回值。
异常: 该函数没有抛出任何异常。
下面的程序演示了上述函数。
程序1:
// program to demonstrate the
// function java.util.Random.nextBytes()
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// create random object
Random r = new Random();
// create byte array
byte[] bytes = new byte[10];
// put the next byte in the array
r.nextBytes(bytes);
// print random value of array
System.out.print("Random bytes = [ ");
for (int i = 0; i < bytes.length; i++) {
System.out.printf("%d ", bytes[i]);
}
System.out.print("]");
}
}
输出:
Random bytes = [ -90 -126 -75 50 -117 -13 -55 -63 -117 47 ]
程序2。
// program to demonstrate the
// function java.util.Random.nextBytes()
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// create random object
Random r = new Random();
// create byte array
byte[] bytes = new byte[15];
// put the next byte in the array
r.nextBytes(bytes);
// print random value of array
System.out.print("Random bytes = [ ");
for (int i = 0; i < bytes.length; i++) {
System.out.printf("%d ", bytes[i]);
}
System.out.print("]");
}
}
输出:
Random bytes = [ -82 75 -105 41 -34 94 81 10 -107 -46 37 4 -1 100 -119 ]