14 changed files with 82 additions and 115 deletions
@ -1,8 +1,42 @@
|
||||
package com.logpm.factory; |
||||
|
||||
import java.util.Random; |
||||
|
||||
public class TestService { |
||||
|
||||
public static void main(String[] args) { |
||||
|
||||
String code = getCharAndNumr(32); |
||||
System.out.println(code); |
||||
} |
||||
/** |
||||
* 方法1:生成随机数字和字母组合 |
||||
* @param length |
||||
* @return |
||||
*/ |
||||
|
||||
public static String getCharAndNumr(int length) { |
||||
|
||||
Random random = new Random(); |
||||
|
||||
StringBuffer valSb = new StringBuffer(); |
||||
|
||||
String charStr = "0123456789abcdefghijklmnopqrstuvwxyz"; |
||||
|
||||
int charLength = charStr.length(); |
||||
|
||||
|
||||
|
||||
for (int i = 0; i < length; i++) { |
||||
|
||||
int index = random.nextInt(charLength); |
||||
|
||||
valSb.append(charStr.charAt(index)); |
||||
|
||||
} |
||||
|
||||
return valSb.toString(); |
||||
|
||||
} |
||||
|
||||
} |
||||
|
@ -1,2 +1,2 @@
|
||||
REGISTER=192.168.0.157/blade |
||||
TAG=3.0.1.RELEASE |
||||
TAG=3.1.0.RELEASE |
||||
|
Loading…
Reference in new issue