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) // 현재가 만료기간보다 이전일때

+ Recent posts