项目中 做统计分析 之类的时候 经常会用到 一天中 每10分钟 或者 15分钟 获取一次时间 查询时间段内的数据信息 索性 写了个公共方法调用
代码如下:
/**
* @author zianY
* 一天里 相隔几分钟 获取一个时间段
* @param minute 分钟
* @return
*/
public static List<Date> getTimeSegment(int minute) {
Calendar cal = Calendar.getInstance();
//当前时间 0点
cal.set(cal.get(Calendar.YEAR), (cal.get(Calendar.MONTH)),
cal.get(Calendar.DAY_OF_MONTH), 0, 0, 0);
cal.set(Calendar.MILLISECOND, 0);
//当前时间 0点 转换成 毫秒时间戳
long startTime = cal.getTimeInMillis();
//第二天时间 0点
cal.set(cal.get(Calendar.YEAR), (cal.get(Calendar.MONTH)),
cal.get(Calendar.DAY_OF_MONTH)+1, 0, 0, 0);
//第二天时间 0点 转换成 毫秒时间戳
long endTime = cal.getTimeInMillis();
final int seg = minute * 60 * 1000;// 分钟 转换成时间戳
List<Date> result = new ArrayList<Date>();
for (long time = startTime; time <= endTime; time += seg) {
result.add(new Date(time));
}
return result;
}
public static List<Map<String,Object>> getTimeMap(int minute) {
SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
List<Date> list = getTimeSegment(120);
List<Map<String,Object>> lst = new ArrayList<Map<String,Object>>();
for (int i = 1; i < list.size(); i++) {
Map<String,Object> map = new HashMap<String, Object>();
map.put("sta_tim", fmt.format(list.get(i-1)));
map.put("end_tim", fmt.format(list.get(i)));
lst.add(map);
}
return lst;
}
public static void main(String[] args) {
List<Map<String,Object>> lstList = getTimeMap(120);//每相隔 2个小时获取一次
System.out.println(lstList);
}
完~