java:时间

转换为:yyyy-MM-dd HH:mm:ss 格式  

Date nowTime=new Date(System.currentTimeMillis());
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String time =sdf.format(nowTime));

你可能感兴趣的:(java:时间)