SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String today = df.format(new Date());
在java.text.SimpleDateFormat 的Doc中有详细的格式说明
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String today = df.format(new Date());
在java.text.SimpleDateFormat 的Doc中有详细的格式说明