Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用安全随机生成随机密码。我浏览了提供的一些示例以及crowne 提供的关于如何创建密码的答案? 很棒,我已经根据我的要求进行了修改。
问题是生成的密码应该总是以字母开头。怎么做?
尝试这个
String password = RandomStringUtils.randomAlphabetic(1) + RandomStringUtils.randomAlphanumeric(7);
如果您的密码长度为 8 个字符