java.util.Random.nextBytes() 方法


java.util.Random.nextBytes() 方法

package com.codingdict;

import java.util.*;

public class RandomDemo {
   public static void main( String args[] ) {

      // create random object
      Random randomno = new Random();

      // create byte array
      byte[] nbyte = new byte[30];

      // put the next byte in the array
      randomno.nextBytes(nbyte);

      // check the value of array   
      System.out.println("Value of byte array: " + nbyte);
   }      
}