?? getdate.java
字號:
package com.dwrtest.java;
import java.text.SimpleDateFormat;
import java.util.Date;
public class GetDate {
public String getToday() {
SimpleDateFormat bartDateFormat = new SimpleDateFormat("EEEE-MMMM-dd-yyyy");
Date date = new Date();
return bartDateFormat.format(date);
}
public String getYesterday() {
SimpleDateFormat bartDateFormat = new SimpleDateFormat("EEEE-MMMM-dd-yyyy");
Date date = new Date();
return bartDateFormat.format(new Date(date.getTime() - 86400000));
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -