//将当前时间的前一个小时的时间戳-转换为毫秒
@Test
public void test1() {
Calendar calendar = Calendar.getInstance();
/* HOUR_OF_DAY 指示一天中小时 */
calendar.set(Calendar.HOUR_OF_DAY, calendar.get(Calendar.HOUR_OF_DAY) - 1);
/* MINUTE 指示一天中的某分 */
// calendar.set(Calendar.MINUTE,(calendar.get(Calendar.MINUTE) - 20));
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Long format = null;
try {
format = df.parse( df.format(calendar.getTime())).getTime();
} catch (ParseException e) {
e.printStackTrace();
}
System.out.println("时间戳:"+format);
}