java时间日期格式化处理SimpleDateFormat

方法一:

import java.util.Date; 
import java.text.SimpleDateFormat; 
class dayTime 
{ 
public static void main(String args[]) 
{ 
Date nowTime=new Date(); 
System.out.println(nowTime); 
SimpleDateFormat time=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
System.out.println(time.format(nowTime)); 
} 
}

方法二:(通过MessageFormat转化)

String dateTime = MessageFormat.format("{0,date,yyyy-MM-dd HH-mm:ss:ms}" ,
                                    new Object[]       {
                                        new Java.sql.Date(System.currentTimeMillis())
                                    });

方法三:(推荐)

String dateTime = LocalDateTime.now().format(DateTimeFormatter.ofPattern("MMddHHmmss"))
正在加载评论...