JAVA如何获取一个5位随机数(不重复)和年月日并存在一个变量中 50
5个回答
展开全部
public class Test{
public static void main(String[] args) {
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
StringBuffer sb = new StringBuffer();
StringBuffer sb1 = new StringBuffer();
Random r=new Random();
while(sb.size()<=5) {
int m = r.nextInt();
if(!sb1.contains(m.toString)) {
sb1.append(m.toString);
sb.append(m.toString+df.format(new Date()));
}
}
System.out.println("sb就是所求的变量");
}
}
不知道是不是你说的意思
展开全部
是要组成 2013110810292978978 的数么、
20131108102929 是时间。后五位是随机数。
你可以使用new SimpleDateFormat("yyyyMMddHHmmssSSS").format(testdate); 格式化你的时间。SSS 是毫秒值。本身就已经很难重复了。哪有哪么准一毫秒都不差。然后后面再写个。
new Random().nextInt(10) 自己拼就行了。
20131108102929 是时间。后五位是随机数。
你可以使用new SimpleDateFormat("yyyyMMddHHmmssSSS").format(testdate); 格式化你的时间。SSS 是毫秒值。本身就已经很难重复了。哪有哪么准一毫秒都不差。然后后面再写个。
new Random().nextInt(10) 自己拼就行了。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public static void function(){
int n=0;
n=(int)(Math.random()*100000);
while(n<10000 || !handle(n)){
n=(int)(Math.random()*100000);
}
System.out.println("n="+n);
}
public static boolean handle(int n){
int[] list=new int[5];
for(int i=0;i<5;i++){
list[i]=n%10;
n=n/10;
}
for(int i=0;i<5;i++){
for(int j=i+1;j<5;j++){
if(list[i]==list[j]) return false;
}
}
return true;
}
public static void main(String args[]) throws Exception{
function();
}
int n=0;
n=(int)(Math.random()*100000);
while(n<10000 || !handle(n)){
n=(int)(Math.random()*100000);
}
System.out.println("n="+n);
}
public static boolean handle(int n){
int[] list=new int[5];
for(int i=0;i<5;i++){
list[i]=n%10;
n=n/10;
}
for(int i=0;i<5;i++){
for(int j=i+1;j<5;j++){
if(list[i]==list[j]) return false;
}
}
return true;
}
public static void main(String args[]) throws Exception{
function();
}
追问
能解释下什么意思吗 怎么没有年月日哦
追答
因为看不懂你说的年月日放在一个变量中是什么意思??年月日可以直接用Date类获取到。。很简单的
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
随机数还不简单么?
int i = new Random().nextInt(89999)+10000;
和年月日并存是个什么概念?需要同时获取年月日么?
Calendar c = Calendar.getInstance();
int year = c.get(Calendar.YEAR);
int month = c.get(Calendar.MONTH);
int day = c.get(Calendar.DATE);
String nyr = year+""+month+""+day;
// 拼接到变量
String result = i+","+nyr;
System.out.println(result);
// 分离
String[] strs = result.split(",");
System.out.println("随机数:"+strs[0]);
System.out.println("年月日:"+strs[1]);
int i = new Random().nextInt(89999)+10000;
和年月日并存是个什么概念?需要同时获取年月日么?
Calendar c = Calendar.getInstance();
int year = c.get(Calendar.YEAR);
int month = c.get(Calendar.MONTH);
int day = c.get(Calendar.DATE);
String nyr = year+""+month+""+day;
// 拼接到变量
String result = i+","+nyr;
System.out.println(result);
// 分离
String[] strs = result.split(",");
System.out.println("随机数:"+strs[0]);
System.out.println("年月日:"+strs[1]);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
年月日直接用当前系统时间就可以了吧?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询