1. 程式人生 > >java按照指定格式輸出系統時間使用SimpleDateFormat方法

java按照指定格式輸出系統時間使用SimpleDateFormat方法

oid args date println TE pri RM imp simple

public class TimeThree {
public static void main(String[] args) {
SimpleDateFormat d = new SimpleDateFormat("yyyy-MM-dd E HH:mm:ss");
Date date = new Date();
d.format(date);
System.out.println(date);
}
}

java按照指定格式輸出系統時間使用SimpleDateFormat方法