Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要jsp或javascript中的代码,当用户注册时,它将连续自动生成数字。
如果您将用户保存在数据库中,则设置您的 ID 列autoIncreament,无需为此编码。
autoIncreament
Samiksha,我认为您正在寻找UUID 。UUID代表 128 位值。
阅读这篇文章以生成唯一 ID。
直接用作:
UUID uniqueId = UUID.randomUUID();
祝你好运