如何在Java中创建20个随机字节的数组?
尝试Random.nextBytes方法:
Random.nextBytes
byte[] b = new byte[20]; new Random().nextBytes(b);