标签: java python
如果Java具有与随机库中称为urandom的python中类似的函数,我该如何使用它?
您将要使用的Python:
import random random._urandom(1)
我可以在Java中做什么?
Urandom不会生成随机数,它会返回n个适合加密使用的随机字节
答案 0 :(得分:4)
使用:
byte[] bytes = new byte[x]; new Random().nextBytes(bytes);
您的数组将被随机字节填充