336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
public class DateController {
Calendar calendar = null;
public DateController() {
calendar = Calendar.getInstance();
}
public Date getToday() {
return calendar.getTime();
}
public Date getMonthAgo(int month) {
calendar.add(Calendar.MONTH, -month);
return calendar.getTime();
}
public static void main(String[] args) {
DateController dc = new DateController();
System.out.println(new SimpleDateFormat("yyyyMMddHHmmss").format(dc.getToday()));
System.out.println(new SimpleDateFormat("yyyyMMddHHmmss").format(dc.getMonthAgo(3)));
// if(loginUser.getChngDt().compareTo(new SimpleDateFormat("yyyyMMddHHmmss").format(date)) < 0) {
// chngPwd = true;
// }
if("20141204055934".compareTo("20210310144653") < 0) {
System.out.println(11);
}
}
}
'IT > Java' 카테고리의 다른 글
GSON (0) | 2021.06.09 |
---|---|
Thread 변수 공유 (0) | 2021.06.09 |
jetty server (0) | 2021.06.07 |
자바 ArrayList<Object> 정렬 (0) | 2020.09.23 |
자바 서버/클라이언트 소켓통신 예제 (0) | 2020.09.22 |