获取300秒后时间
Posted 健身小白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取300秒后时间相关的知识,希望对你有一定的参考价值。
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Calendar c = new GregorianCalendar();
Date date = new Date();
System.out.println("系统当前时间:" + df.format(date));
// 获取当前日期之前 xx 秒。整数为当前时间往后移,负数则往前推。
c.setTime(date);
c.add(Calendar.SECOND, +300); // 秒
date = c.getTime();
String strSecond = df.format(date);
System.out.println("系统后300秒时间:" + strSecond);
以上是关于获取300秒后时间的主要内容,如果未能解决你的问题,请参考以下文章