Java 获取当前时间的前几天或后几天


 SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");  
     Date date=new Date();  
     Calendar calendar = Calendar.getInstance();  
     calendar.setTime(date);  
     calendar.add(Calendar.DAY_OF_MONTH, -1);  
     date = calendar.getTime();  
     System.out.println(sdf.format(date)); 

 

原创文章,作者:wure,如若转载,请注明出处:https://blog.ytso.com/273667.html

(0)
上一篇 2022年7月11日
下一篇 2022年7月11日

相关推荐

发表回复

登录后才能评论