随机数
随机数生成的工具类–Apache Commons–RandomStringUtils
星期六, 六月 15th, 2019 | JAVA-and-J2EE | 没有评论
常用的随机数生成
使用 Commons Lang 项目地址:http://commons.apache.org/proper/commons-lang/
当前POM最新引用:
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.9</version> </dependency> |
常用使用示例:
1.RandomStringUtils.random(4)
:产生4位长度的随机字符串,中文环境下是乱码
2.RandomStringUtils.random(4, new char[]{‘a’,’b’,’c’,’d’,’e’,’f’, ‘1’, ‘2’, ‘3’})
:使用指定的字符生成4位长度的随机字符串
3.RandomStringUtils.randomAlphabetic(4)
:生成指定长度的随机大小写字母组合的字符串
4.RandomStringUtils.randomAlphanumeric(4)
:生成指定长度的字母数字组合的字符串
4.RandomStringUtils.randomNumeric(4)
:生成随机数字字符串
6.RandomStringUtils.randomAscii(4)
:生成从ASCII 32到126组成的随机字符串 (包括符号)
Search
相关文章
热门文章
最新文章
文章分类
- ajax (10)
- algorithm-learn (3)
- Android (6)
- as (3)
- computer (85)
- Database (30)
- disucz (4)
- enterprise (1)
- erlang (2)
- flash (5)
- golang (3)
- html5 (18)
- ios (4)
- JAVA-and-J2EE (186)
- linux (143)
- mac (10)
- movie-music (11)
- pagemaker (36)
- php (50)
- spring-boot (2)
- Synology群晖 (2)
- Uncategorized (6)
- unity (1)
- webgame (15)
- wordpress (33)
- work-other (2)
- 低代码 (1)
- 体味生活 (40)
- 前端 (21)
- 大数据 (8)
- 游戏开发 (9)
- 爱上海 (19)
- 读书 (4)
- 软件 (3)