获取年月日 时分秒
import java.text.SimpleDateFormat; import java.util.Date; Date d = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String currentTime = sdf.format(d); System.out.println("当前时间:" + currentTime);
说明:
如果只需要获取年月日,那就将格式设置为:yyyy-MM-dd 。