336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
// 날짜 포맷 변경
SimpleDateFormat sdftime = new SimpleDateFormat("yyyy-MM-dd a h:mm");
Date nowDate = new Date();
Date expiryDate = sdftime.parse(sdftime.format(rs.getTimestamp(4)), new ParsePosition(0));
-> sdftime.parse(sdftime.format(DB Result Set), new ParsePosition(0));)
nowDate.before(expiryDate) // 현재가 만료기간보다 이전일때
'IT잡아먹기 > JAVA' 카테고리의 다른 글
JAVA SWing 프레임창 위치 조정 (0) | 2015.12.30 |
---|---|
JAVA JDialog를 이용한 커스텀 Dialog, GroupLayout (0) | 2015.12.30 |
JAVA Swing Jcombobox ArrayList 넣기 (0) | 2015.12.29 |
JAVA Swing Jcombobox 날짜 넣고 오늘날짜 selected 하기 (0) | 2015.12.29 |