자바 지정 한 시작 시간 과 종료 시간 사이 의 모든 날 짜 를 가 져 옵 니 다.

본 논문 의 사례 는 자바 가 지정 한 시작 시간 과 종료 시간 사이 의 모든 날짜 의 구체 적 인 코드 를 공유 하여 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.

import java.text.SimpleDateFormat;
import java.util.Calendar;
 
public class TimerTest {
 
 public static void main(String[] args) throws Exception {
 String beginDate = "2016-07-16";//    
 String endDate = "2016-07-25";//    
 
 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
 Calendar cal = Calendar.getInstance();
 cal.setTime(sdf.parse(beginDate));
 
 for (long d = cal.getTimeInMillis(); d <= sdf.parse(endDate).getTime(); d = get_D_Plaus_1(cal)) {
 System.out.println(sdf.format(d));
 }
 
 }
 
 public static long get_D_Plaus_1(Calendar c) {
 c.set(Calendar.DAY_OF_MONTH, c.get(Calendar.DAY_OF_MONTH) + 1);
 return c.getTimeInMillis();
 }
}
실행 결과:

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기