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));
}
}