本文介绍了自动生成字母数字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有两列,分别是id(varchar (16))
和password (char(10))
.现在,我想调用用于自动生成字母数字的方法,该方法应该保存在mysql中.
问候
Asha
Hi,
I have two column that is id(varchar (16))
and password (char(10))
. Now I want to call method for generating alphanumeric automatically and that should save in mysql..
Regards
Asha
推荐答案
Guid.NewGuid().ToString()
public String getRandom(int iLength) {
UUID oID = UUID.randomUUID();
String strRandom = oID.toString()
return strRandom.substring(iLength);
}
返回所需长度的随机String.
returns a random String in a desired length.
这篇关于自动生成字母数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!