Java가 Date의 어제 및 내일 예제 코드를 가져오는 방법

1357 단어 javadate
앞말
여러분이 자바에서 가장 많이 사용하는 시간류는 바로 java.util.Date 이라고 믿습니다. Date류 중getYear() , getMonth() 등 년, 월, 일을 얻는 방법이 모두 폐기되었기 때문에 본고의 문제는 Calendar를 빌려 이루어져야 합니다. 다음은 예시 코드를 직접 보십시오.
캘린더 클래스 사용: Calendar

@Test
 public void dateTest() {
 Date today = new Date();
 for(int i=0;i<10;i++) {
 today = yesterday(today);
 System.out.println(today);
 }
 System.out.println("------------");
 for(int i=0;i<10;i++) {
 today = tomorrow(today);
 System.out.println(today);
 }

 }

 /**
 *  
 * @param today
 * @return
 */
 public Date yesterday(Date today) {
 Calendar calendar = Calendar.getInstance();
 calendar.setTime(today);
 calendar.set(Calendar.DATE, calendar.get(Calendar.DATE) - 1);
 return calendar.getTime();
 }

 /**
 *  
 * @param today
 * @return
 */
 public Date tomorrow(Date today) {
 Calendar calendar = Calendar.getInstance();
 calendar.setTime(today);
 calendar.set(Calendar.DATE, calendar.get(Calendar.DATE) + 1);
 return calendar.getTime();
 }
총결산
이상은 Java를 이용하여 Date'어제'와'내일'을 획득하는 것에 관한 모든 내용입니다. 본고의 내용이 여러분의 학습이나 업무에 어느 정도 도움이 되기를 바랍니다. 궁금한 점이 있으면 댓글을 남겨 주십시오.

좋은 웹페이지 즐겨찾기