Java计算时间差及某个时间段数据

Date t1=dc.getComRegdate(); //从某个POJO拿出来的时间字段
Date t2=new Date();
long day=(t2.getTime()-t1.getTime())/(1000 * 60 * 60*24);//算出2个时间相差多少天

2、hibernate+spring里 查出N天以内的数据

假设要查询近一个星期内的数据,也就是从上个星期开始到今天

int date =7;//7天内数据

Calendar   cal   =   Calendar.getInstance();

cal.add(Calendar.DATE,   -date);

String hql="from DxInviteInvite as i where i.inviteDate > ?“

Query q = this.getSession().createQuery(hql);

q.setTimestamp(0, cal.getTime());

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwsfyj.html