Java快速打乱一个字符串

前言

今天遇到一个需求,将用户名和密码(加密后)加起来,打乱取三个字符,作为用户密码加密的salt.
所以写了一个简单高效的字符串打乱代码.


/**
 * 

* * @author : snx [email protected] * @date : 2020-06-15 11:09 */ public class T { public static void main(String[] args) { List stringList = Arrays.asList("123456789".split("")); Collections.shuffle(stringList); stringList.forEach(System.out::print); } }

你可能感兴趣的:(Java快速打乱一个字符串)