JS和JAVA分别获取当前日期的三个月前的日期

JS:

     var date = new Date();
     date.setMonth(date.getMonth()-3);
     alert(date.format('dd/MM/yyyy hh:mm:ss'));

JAVA:

   Calendar calendar = Calendar.getInstance();
   calendar.add(Calendar.MONTH, -3);//得到前3个月
   Date  formNow3Month = calendar.getTime();

SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");

sdf.format(formNow3Month)

你可能感兴趣的:(JS和JAVA分别获取当前日期的三个月前的日期)