为了触发未来的一些事件,我正在尝试创建一个算法,该算法将执行以下操作:
- 以"
yyyy-mm-dd
"格式生成一定数量的随机日期 - 以"
hh:mm:ss
"格式为每个日期生成时间。时间应为(24小时),介于9到22小时之间 - 将这些项添加到字符串数组中。1个完整的数组条目看起来像"
2013-02-25 09:45:23
"
我不清楚该怎么做。有什么建议吗?
您需要的精确解决方案。。
public class RandomDateTime {
public static void main(String[] args) {
SimpleDateFormat dfDateTime = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss",Locale.getDefault());
int year = RandomDateTime.randBetween(1900, 2013);// Here you can set Range of years you need
int month = RandomDateTime.randBetween(0, 11);
int hour = RandomDateTime.randBetween(9, 22); //Hours will be displayed in between 9 to 22
int min = RandomDateTime.randBetween(0, 59);
int sec = RandomDateTime.randBetween(0, 59);
GregorianCalendar gc = new GregorianCalendar(year, month, 1);
int day = RandomDateTime.randBetween(1, gc.getActualMaximum(gc.DAY_OF_MONTH));
gc.set(year, month, day, hour, min,sec);
System.out.println(dfDateTime.format(gc.getTime()));
}
public static int randBetween(int start, int end) {
return start + (int)Math.round(Math.random() * (end - start));
}
}
您可以在以下位置了解SimpleDateTime的更多用法:http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html
您可以使用random函数获取随机时间戳,我的意思是您可以轻松地获取随机长值,然后将该时间戳转换为类似的日期对象
Java简单时间戳到日期转换
这个想法非常简单。您可以使用Date(milis)构造函数和随机数生成器来生成随机日期和时间。你必须找到下限和上限,然后从两者之间随机选择一个数字。
格式化日期和时间非常简单,您可以使用DateFormat类来完成此操作。