java 生成UUID重复

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 生成UUID重复相关的知识,希望对你有一定的参考价值。

最近在项目中我们使用UUID作为上传的附件名称,系统在运行一段时间后,在开发环境,测试环境,UAT环境都看到了重复的附件名称,由此我猜想是UUID重复导致,但网上都说UUID重复的概率是低的忽略不计,现实是重复出现了,下面是数据库中查询到的结果。java代码我就不贴了。

用UUID本身就有问题把,UUID保证的同一时刻每台电脑生成的字符串不重复,不保证同一时刻相同电脑生成的不相同吧?
为什么不对附件求sha-1 把 附件的sha-1作为文件名啊,这样就是重复了也是相同的文件才重复啊。追问

有道理,只能保证同一时刻每台计算机生成的不同,不能保证一台计算机在不同的时间生成的不相同。

参考技术A java是可以做到的。

先导入uuid包:import java.util.UUID;
然后:
String uuid=UUID.randomUUID().toString().replaceAll("-", "");
参考技术B 程序有误吧,你确定重复的uuid都是新生成的,而不是用的旧的?

java 生成随机不重复邀请码 - RC4加密和UUID

import java.util.UUID;

public class RC4Util {

	public static String decry_RC4(byte[] data, String key) {
		if (data == null || key == null) {
			return null;
		}
		return asString(RC4Base(data, key));
	}

	public static String decry_RC4(String data, String key) {
		if (data == null || key == null) {
			return null;
		}
		return new String(RC4Base(HexString2Bytes(data), key));
	}

	public static byte[] encry_RC4_byte(String data, String key) {
		if (data == null || key == null) {
			return null;
		}
		byte b_data[] = data.getBytes();
		return RC4Base(b_data, key);
	}

	public static String encry_RC4_string(String data, String key) {
		if (data == null || key == null) {
			return null;
		}
		return toHexString(asString(encry_RC4_byte(data, key)));
	}

	private static String asString(byte[] buf) {
		StringBuffer strbuf = new StringBuffer(buf.length);
		for (int i = 0; i < buf.length; i++) {
			strbuf.append((char) buf[i]);
		}
		return strbuf.toString();
	}

	private static byte[] initKey(String aKey) {
		byte[] b_key = aKey.getBytes();
		byte state[] = new byte[256];

		for (int i = 0; i < 256; i++) {
			state[i] = (byte) i;
		}
		int index1 = 0;
		int index2 = 0;
		if (b_key == null || b_key.length == 0) {
			return null;
		}
		for (int i = 0; i < 256; i++) {
			index2 = ((b_key[index1] & 0xff) + (state[i] & 0xff) + index2) & 0xff;
			byte tmp = state[i];
			state[i] = state[index2];
			state[index2] = tmp;
			index1 = (index1 + 1) % b_key.length;
		}
		return state;
	}

	private static String toHexString(String s) {
		String str = "";
		for (int i = 0; i < s.length(); i++) {
			int ch = (int) s.charAt(i);
			String s4 = Integer.toHexString(ch & 0xFF);
			if (s4.length() == 1) {
				s4 = '0' + s4;
			}
			str = str + s4;
		}
		return str;// 0x表示十六进制
	}

	private static byte[] HexString2Bytes(String src) {
		int size = src.length();
		byte[] ret = new byte[size / 2];
		byte[] tmp = src.getBytes();
		for (int i = 0; i < size / 2; i++) {
			ret[i] = uniteBytes(tmp[i * 2], tmp[i * 2 + 1]);
		}
		return ret;
	}

	private static byte uniteBytes(byte src0, byte src1) {
		char _b0 = (char) Byte.decode("0x" + new String(new byte[]{src0})).byteValue();
		_b0 = (char) (_b0 << 4);
		char _b1 = (char) Byte.decode("0x" + new String(new byte[]{src1})).byteValue();
		byte ret = (byte) (_b0 ^ _b1);
		return ret;
	}

	private static byte[] RC4Base(byte[] input, String mKkey) {
		int x = 0;
		int y = 0;
		byte key[] = initKey(mKkey);
		int xorIndex;
		byte[] result = new byte[input.length];

		for (int i = 0; i < input.length; i++) {
			x = (x + 1) & 0xff;
			y = ((key[x] & 0xff) + y) & 0xff;
			byte tmp = key[x];
			key[x] = key[y];
			key[y] = tmp;
			xorIndex = ((key[x] & 0xff) + (key[y] & 0xff)) & 0xff;
			result[i] = (byte) (input[i] ^ key[xorIndex]);
		}
		return result;
	}

	/**
	 * 获取随机不重复邀请码
	 *
	 * @param userId 用户id
	 * @return the string
	 */
	public String getInviterCode(String userId){
		return encry_RC4_string(String.format("%06d", userId), UUID.randomUUID().toString()).toUpperCase();
	}

	public static void main(String[] args) {
		for (int i = 1; i < 100; i++) {
			String str = encry_RC4_string(String.format("%05d", i), UUID.randomUUID().toString()).toUpperCase();
			System.out.println(str);
		}
	}
}

以上是关于java 生成UUID重复的主要内容,如果未能解决你的问题,请参考以下文章

JAVA JDK提供的一个自动生成主键 UUID.randomUUID()的方法 它永远都不会重复嘛??

java怎么产生无重复的流水号!

技术累积点java22UUID

java uuid 最大能生成多少条?

Python使用UUID库生成唯一ID,妈妈再也不会担心我的生成重复ID了

UUID长度固定怎么保证不重复