String uuid = UUID.randomUUID().toString().replaceAll("-", ""); System.out.println(uuid);
如果不加.replaceAll("-", "")
生成出的UUID为36位,格式为8143c4a4-c060-4b4e-81b4-44be4615c678,易导致数据库插入错误
标签:uuid pos post out 导致 div str string 插入
String uuid = UUID.randomUUID().toString().replaceAll("-", ""); System.out.println(uuid);
如果不加.replaceAll("-", "")
生成出的UUID为36位,格式为8143c4a4-c060-4b4e-81b4-44be4615c678,易导致数据库插入错误
标签:uuid pos post out 导致 div str string 插入
原文地址:https://www.cnblogs.com/gode/p/8193491.html