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


Java Random nextBytes()用法及代码示例


Random类的nextBytes()方法将生成的随机字节放入user-supplied字节数组中。

用法:

public void nextBytes(byte[] bytes)  

参数:该函数接受单个参数字节,该参数字节是将随机字节放入其中的非空字节数组。


返回值:此方法没有返回值。

异常:该函数不会引发任何异常。

下面的程序演示了上述函数:

示例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 ]


相关用法


注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 Random nextBytes() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。