/*根据指定的格式获取当前系统时间*/
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
long start = System.currentTimeMillis();
System.out.println(sdf.format(start));
/*根据指定的格式获取当前系统时间*/
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
long start = System.currentTimeMillis();
System.out.println(sdf.format(start));