목록java (11)
정미나닷컴
[Java] 자바 페이징 함수
public String getPaging(int totalCount, int currentPage, int pageSize, int pageGroupSize){ String pageStr = ""; int pageGroupCount = totalCount / (pageSize * pageGroupSize) + (totalCount % (pageSize * pageGroupSize) == 0 ? 0 :1); int numPageGroup = (int)Math.ceil((double)currentPage / pageGroupSize); if (totalCount > 0){ int pageCount = (totalCount / pageSize) + (totalCount % pageSize == 0 ? 0 :..
IT
2010. 10. 5. 14:46
[JSP] JSP D-day 계산
curYear){ for(int i=curYear; i
IT
2010. 4. 27. 18:37
[JSP] JSP 시간 비교
Calendar cal = Calendar.getInstance(); long currentTime = cal.getTimeInMillis(); cal.set(2010, 03, 19, 00, 0); // 기준일 2010년 4월 19일 00시 long tmpTime = cal.getTimeInMillis(); if ( currentTime - tmpTime < 0 ) { out.println("이전"); }else{ out.println("이후"); }
IT
2010. 4. 19. 09:22
반응형