源代码下载地址:http://www.zuidaima.com/share/1601365127646208.htm
几行代码,很简单,直接贴了,处女分享:
01 |
public static String |
02 |
UUID |
03 |
String // |
04 |
int p 0 ; |
05 |
int j 0 ; |
06 |
char [] new char [ 32 ]; |
07 |
while (p<s.length()){ |
08 |
char c |
09 |
p+= 1 ; |
10 |
if (c== ‘-‘ ) continue ; |
11 |
buf[j]=c;j+= 1 ; |
12 |
} |
13 |
return new String(buf); |
14 |
} |
刚才没弄好,重新发一下,惭愧惭愧。。。。。
我来提供一份简单的:
1 |
UUID |
2 |
3 |
System.out.println(uuid); |
4 |
System.out.println(uuid.toString().replaceAll( "\\-" , "" ));
|
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-12-28 11:45:40