本文介绍了如何在Java中高效地生成安全的随机字母数字字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在Java中高效地生成安全的随机(或伪随机)字母数字字符串?
How do you generate a secure random (or pseudo-random) alphanumeric string in Java efficiently?
推荐答案
初始化数组包含所有接受的字符( CHARS_ARRAY
),然后实例化实例,然后重复调用 nextInt(CHARS_ARRAY.length)
在char数组中获取随机索引。将每个字符附加到 StringBuilder
,直到获得所需的字符数。
Initialize an array containing all the accepted chars (CHARS_ARRAY
), then instantiate a SecureRandom instance, and call nextInt(CHARS_ARRAY.length)
repeatedly to get a random index in your char array. Append each char to a StringBuilder
until you get the expected number of chars.
这篇关于如何在Java中高效地生成安全的随机字母数字字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!