java获取当前yyyy-MM-dd格式时间
public static void main(String[] args) throws Exception{
Date date = new Date();
DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
String time = format.format(date);
System.out.println("time: "+time);
}
同理,需要什么格式,new SimpleDateFormat(“yyyy-MM-dd”);这里就传什么格式就可以传化了。