java获取当前时间的前一个小时

java获取当前时间的前一个小时

	@Test
    public  void getInteger(){
       Calendar calendar = Calendar.getInstance();
       /* HOUR_OF_DAY 指示一天中的小时 */
    calendar.set(Calendar.HOUR_OF_DAY, calendar.get(Calendar.HOUR_OF_DAY) - 1);
    SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    System.out.println("一个小时前的时间:" + df.format(calendar.getTime()));
    System.out.println("当前的时间:" + df.format(new Date()));
    }

下面附上时间等各种工具类大全
https://blog.csdn.net/weixin_43564627/article/details/105653701

java获取当前时间的前一个小时_第1张图片

你可能感兴趣的:(DAte)