欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java获取日期的方法

程序员文章站 2023-12-22 11:17:40
复制代码 代码如下:/** 获取昨天日期 方法一,这个方法好像有点慢*/date dt = new date(); calendar cal = calendar.geti...

复制代码 代码如下:

/*
* 获取昨天日期 方法一,这个方法好像有点慢
*/
date dt = new date();
calendar cal = calendar.getinstance();
cal.add(calendar.date, -1);
time = new simpledateformat( "yyyy-mm-dd").format(cal.gettime());
/*
* 获取昨天日期 方法二
*/
date as = new date(new date().gettime()-24*60*60*1000);
simpledateformat matter1 = new simpledateformat("yyyy-mm-dd");
time = matter1.format(as);

           

上一篇:

下一篇: