需要引入的包有:
import java.util.Date;
此为获取当前系统时间,合适为“1991-01-01”
String now = "";
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
now = dateFormat.format(new Date());
如果要获取date类型的当前时间,则需要修改为:
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
Date now = null;
now = sdf.parse(sdf.format(new Date()));