时间的转换与格式化

//将当前时间的前一个小时的时间戳-转换为毫秒
    @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);

    }
上一篇:java日期转换工具类-各种转换和获取(全)


下一篇:Element calendar 日历 扩展