java 随机时间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 随机时间相关的知识,希望对你有一定的参考价值。
请问如何在JAVA 中 随即一个数,但是是时间 可以精确分 秒的到的 谢谢。~
哦对了 是 0.01秒
java生成某个时间段内的随机时间(先定义一个时间段,之后随机生成符合条件的时间):
Date randomDate=randomDate("2010-09-20","2010-09-21");/**
* 生成随机时间
* @param beginDate
* @param endDate
* @return
*/
private static Date randomDate(String beginDate,String endDate )
try
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date start = format.parse(beginDate);//构造开始日期
Date end = format.parse(endDate);//构造结束日期
//getTime()表示返回自 1970 年 1 月 1 日 00:00:00 GMT 以来此 Date 对象表示的毫秒数。
if(start.getTime() >= end.getTime())
return null;
long date = random(start.getTime(),end.getTime());
return new Date(date);
catch (Exception e)
e.printStackTrace();
return null;
private static long random(long begin,long end)
long rtn = begin + (long)(Math.random() * (end - begin));
//如果返回的是开始时间和结束时间,则递归调用本函数查找随机值
if(rtn == begin || rtn == end)
return random(begin,end);
return rtn;
参考技术A 不是很明白你的问题,难道是想随机得到一个数然后是哪天的几分几秒?
System.currentTimeMillis()?
还是你想把一个随机数转换成时分秒?
我的mail: madshime@qq.com 参考技术B import java.util.*;
import java.text.*;
public class RandomTime
public static void main(String[] args)
Random rand = new Random();
int ms;
ms = rand.nextInt(100000);
Date date = new Date(ms);
SimpleDateFormat sdf = new SimpleDateFormat("mm:ss.SS");
System.out.println(sdf.format(date));
参考技术C import java.util.*;
import java.text.*;
public class RandomTime
public static void main(String[] args)
Random rand = new Random();
int ms;
ms = rand.nextInt(100000);
Date date = new Date(ms);
SimpleDateFormat sdf = new SimpleDateFormat("mm:ss.SS");
System.out.println(sdf.format(date));
本回答被提问者采纳 参考技术D 1楼给你的方法就是,这个能精确到0.001秒
以上是关于java 随机时间的主要内容,如果未能解决你的问题,请参考以下文章