Java中拼接两个时间

来源:互联网 发布:virtualbox拖拽文件mac 编辑:程序博客网 时间:2024/05/22 11:31
package com.atsys.server.commentary.util;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Calendar;import java.util.Date;/** * Created  2017/10/10. */public class Test1 {    public static void main(String[] args) {        String beginTime = "2017-08-01 19:34:17";        String endTime = "2018-09-28 12:34:17";        String classBeginTime = "10:00:00";        String classEndTime ="10:45:00";        SimpleDateFormat b = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");        SimpleDateFormat e = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");        SimpleDateFormat cb = new SimpleDateFormat("hh:mm:ss");        SimpleDateFormat ce = new SimpleDateFormat("hh:mm:ss");        Date parseBeginTime = null;        try {            parseBeginTime = b.parse(beginTime);        } catch (ParseException e1) {            e1.printStackTrace();        }        Date parseEndTime = null;        try {            parseEndTime = e.parse(endTime);        } catch (ParseException e1) {            e1.printStackTrace();        }        Date parseClassBeginTime = null;        try {            parseClassBeginTime = cb.parse(classBeginTime);        } catch (ParseException e1) {            e1.printStackTrace();        }        Date parseClassEndTime = null;        try {            parseClassEndTime = ce.parse(classEndTime);        } catch (ParseException e1) {            e1.printStackTrace();        }        Calendar calendar = Calendar.getInstance();        calendar.setTime(parseBeginTime);        //把日期的时分秒设置成0 列如 2017-08-01 00:00:00        calendar.set(Calendar.HOUR_OF_DAY,0);        calendar.set(Calendar.MINUTE,0);        calendar.set(Calendar.SECOND,0);        calendar.set(Calendar.MILLISECOND,0);        Calendar calendarB = Calendar.getInstance();        //拼接时间  8时(h)=28800000毫秒(ms)        calendarB.setTime(new Date(calendar.getTime().getTime()+parseClassBeginTime.getTime()+28800000));        Calendar calendarE = Calendar.getInstance();        calendarE.setTime(new Date(calendar.getTime().getTime()+parseClassEndTime.getTime()+28800000));        while (calendarB.getTime().compareTo(parseEndTime) <= 0){            System.out.println(b.format(calendarB.getTime())+" ~ "+b.format(calendarE.getTime()));            //天数进行加一            calendarB.add(Calendar.DAY_OF_YEAR,1);            calendarE.add(Calendar.DAY_OF_YEAR,1);        }            }}
运行结果:
2017-08-01 10:00:00 ~ 2017-08-01 10:45:002017-08-02 10:00:00 ~ 2017-08-02 10:45:002017-08-03 10:00:00 ~ 2017-08-03 10:45:002017-08-04 10:00:00 ~ 2017-08-04 10:45:002017-08-05 10:00:00 ~ 2017-08-05 10:45:002017-08-06 10:00:00 ~ 2017-08-06 10:45:002017-08-07 10:00:00 ~ 2017-08-07 10:45:002017-08-08 10:00:00 ~ 2017-08-08 10:45:002017-08-09 10:00:00 ~ 2017-08-09 10:45:002017-08-10 10:00:00 ~ 2017-08-10 10:45:002017-08-11 10:00:00 ~ 2017-08-11 10:45:002017-08-12 10:00:00 ~ 2017-08-12 10:45:002017-08-13 10:00:00 ~ 2017-08-13 10:45:002017-08-14 10:00:00 ~ 2017-08-14 10:45:002017-08-15 10:00:00 ~ 2017-08-15 10:45:002017-08-16 10:00:00 ~ 2017-08-16 10:45:002017-08-17 10:00:00 ~ 2017-08-17 10:45:002017-08-18 10:00:00 ~ 2017-08-18 10:45:002017-08-19 10:00:00 ~ 2017-08-19 10:45:002017-08-20 10:00:00 ~ 2017-08-20 10:45:002017-08-21 10:00:00 ~ 2017-08-21 10:45:002017-08-22 10:00:00 ~ 2017-08-22 10:45:002017-08-23 10:00:00 ~ 2017-08-23 10:45:002017-08-24 10:00:00 ~ 2017-08-24 10:45:002017-08-25 10:00:00 ~ 2017-08-25 10:45:002017-08-26 10:00:00 ~ 2017-08-26 10:45:002017-08-27 10:00:00 ~ 2017-08-27 10:45:002017-08-28 10:00:00 ~ 2017-08-28 10:45:002017-08-29 10:00:00 ~ 2017-08-29 10:45:002017-08-30 10:00:00 ~ 2017-08-30 10:45:002017-08-31 10:00:00 ~ 2017-08-31 10:45:002017-09-01 10:00:00 ~ 2017-09-01 10:45:002017-09-02 10:00:00 ~ 2017-09-02 10:45:002017-09-03 10:00:00 ~ 2017-09-03 10:45:002017-09-04 10:00:00 ~ 2017-09-04 10:45:002017-09-05 10:00:00 ~ 2017-09-05 10:45:002017-09-06 10:00:00 ~ 2017-09-06 10:45:002017-09-07 10:00:00 ~ 2017-09-07 10:45:002017-09-08 10:00:00 ~ 2017-09-08 10:45:002017-09-09 10:00:00 ~ 2017-09-09 10:45:002017-09-10 10:00:00 ~ 2017-09-10 10:45:002017-09-11 10:00:00 ~ 2017-09-11 10:45:002017-09-12 10:00:00 ~ 2017-09-12 10:45:002017-09-13 10:00:00 ~ 2017-09-13 10:45:002017-09-14 10:00:00 ~ 2017-09-14 10:45:002017-09-15 10:00:00 ~ 2017-09-15 10:45:002017-09-16 10:00:00 ~ 2017-09-16 10:45:002017-09-17 10:00:00 ~ 2017-09-17 10:45:002017-09-18 10:00:00 ~ 2017-09-18 10:45:002017-09-19 10:00:00 ~ 2017-09-19 10:45:002017-09-20 10:00:00 ~ 2017-09-20 10:45:002017-09-21 10:00:00 ~ 2017-09-21 10:45:002017-09-22 10:00:00 ~ 2017-09-22 10:45:002017-09-23 10:00:00 ~ 2017-09-23 10:45:002017-09-24 10:00:00 ~ 2017-09-24 10:45:002017-09-25 10:00:00 ~ 2017-09-25 10:45:002017-09-26 10:00:00 ~ 2017-09-26 10:45:002017-09-27 10:00:00 ~ 2017-09-27 10:45:002017-09-28 10:00:00 ~ 2017-09-28 10:45:002017-09-29 10:00:00 ~ 2017-09-29 10:45:002017-09-30 10:00:00 ~ 2017-09-30 10:45:002017-10-01 10:00:00 ~ 2017-10-01 10:45:002017-10-02 10:00:00 ~ 2017-10-02 10:45:002017-10-03 10:00:00 ~ 2017-10-03 10:45:002017-10-04 10:00:00 ~ 2017-10-04 10:45:002017-10-05 10:00:00 ~ 2017-10-05 10:45:002017-10-06 10:00:00 ~ 2017-10-06 10:45:002017-10-07 10:00:00 ~ 2017-10-07 10:45:002017-10-08 10:00:00 ~ 2017-10-08 10:45:002017-10-09 10:00:00 ~ 2017-10-09 10:45:002017-10-10 10:00:00 ~ 2017-10-10 10:45:002017-10-11 10:00:00 ~ 2017-10-11 10:45:002017-10-12 10:00:00 ~ 2017-10-12 10:45:002017-10-13 10:00:00 ~ 2017-10-13 10:45:002017-10-14 10:00:00 ~ 2017-10-14 10:45:002017-10-15 10:00:00 ~ 2017-10-15 10:45:002017-10-16 10:00:00 ~ 2017-10-16 10:45:002017-10-17 10:00:00 ~ 2017-10-17 10:45:002017-10-18 10:00:00 ~ 2017-10-18 10:45:002017-10-19 10:00:00 ~ 2017-10-19 10:45:002017-10-20 10:00:00 ~ 2017-10-20 10:45:002017-10-21 10:00:00 ~ 2017-10-21 10:45:002017-10-22 10:00:00 ~ 2017-10-22 10:45:002017-10-23 10:00:00 ~ 2017-10-23 10:45:002017-10-24 10:00:00 ~ 2017-10-24 10:45:002017-10-25 10:00:00 ~ 2017-10-25 10:45:002017-10-26 10:00:00 ~ 2017-10-26 10:45:002017-10-27 10:00:00 ~ 2017-10-27 10:45:002017-10-28 10:00:00 ~ 2017-10-28 10:45:002017-10-29 10:00:00 ~ 2017-10-29 10:45:002017-10-30 10:00:00 ~ 2017-10-30 10:45:002017-10-31 10:00:00 ~ 2017-10-31 10:45:002017-11-01 10:00:00 ~ 2017-11-01 10:45:002017-11-02 10:00:00 ~ 2017-11-02 10:45:002017-11-03 10:00:00 ~ 2017-11-03 10:45:002017-11-04 10:00:00 ~ 2017-11-04 10:45:002017-11-05 10:00:00 ~ 2017-11-05 10:45:002017-11-06 10:00:00 ~ 2017-11-06 10:45:002017-11-07 10:00:00 ~ 2017-11-07 10:45:002017-11-08 10:00:00 ~ 2017-11-08 10:45:002017-11-09 10:00:00 ~ 2017-11-09 10:45:002017-11-10 10:00:00 ~ 2017-11-10 10:45:002017-11-11 10:00:00 ~ 2017-11-11 10:45:002017-11-12 10:00:00 ~ 2017-11-12 10:45:002017-11-13 10:00:00 ~ 2017-11-13 10:45:002017-11-14 10:00:00 ~ 2017-11-14 10:45:002017-11-15 10:00:00 ~ 2017-11-15 10:45:002017-11-16 10:00:00 ~ 2017-11-16 10:45:002017-11-17 10:00:00 ~ 2017-11-17 10:45:002017-11-18 10:00:00 ~ 2017-11-18 10:45:002017-11-19 10:00:00 ~ 2017-11-19 10:45:002017-11-20 10:00:00 ~ 2017-11-20 10:45:002017-11-21 10:00:00 ~ 2017-11-21 10:45:002017-11-22 10:00:00 ~ 2017-11-22 10:45:002017-11-23 10:00:00 ~ 2017-11-23 10:45:002017-11-24 10:00:00 ~ 2017-11-24 10:45:002017-11-25 10:00:00 ~ 2017-11-25 10:45:002017-11-26 10:00:00 ~ 2017-11-26 10:45:002017-11-27 10:00:00 ~ 2017-11-27 10:45:002017-11-28 10:00:00 ~ 2017-11-28 10:45:002017-11-29 10:00:00 ~ 2017-11-29 10:45:002017-11-30 10:00:00 ~ 2017-11-30 10:45:002017-12-01 10:00:00 ~ 2017-12-01 10:45:002017-12-02 10:00:00 ~ 2017-12-02 10:45:002017-12-03 10:00:00 ~ 2017-12-03 10:45:002017-12-04 10:00:00 ~ 2017-12-04 10:45:002017-12-05 10:00:00 ~ 2017-12-05 10:45:002017-12-06 10:00:00 ~ 2017-12-06 10:45:002017-12-07 10:00:00 ~ 2017-12-07 10:45:002017-12-08 10:00:00 ~ 2017-12-08 10:45:002017-12-09 10:00:00 ~ 2017-12-09 10:45:002017-12-10 10:00:00 ~ 2017-12-10 10:45:002017-12-11 10:00:00 ~ 2017-12-11 10:45:002017-12-12 10:00:00 ~ 2017-12-12 10:45:002017-12-13 10:00:00 ~ 2017-12-13 10:45:002017-12-14 10:00:00 ~ 2017-12-14 10:45:002017-12-15 10:00:00 ~ 2017-12-15 10:45:002017-12-16 10:00:00 ~ 2017-12-16 10:45:002017-12-17 10:00:00 ~ 2017-12-17 10:45:002017-12-18 10:00:00 ~ 2017-12-18 10:45:002017-12-19 10:00:00 ~ 2017-12-19 10:45:002017-12-20 10:00:00 ~ 2017-12-20 10:45:002017-12-21 10:00:00 ~ 2017-12-21 10:45:002017-12-22 10:00:00 ~ 2017-12-22 10:45:002017-12-23 10:00:00 ~ 2017-12-23 10:45:002017-12-24 10:00:00 ~ 2017-12-24 10:45:002017-12-25 10:00:00 ~ 2017-12-25 10:45:002017-12-26 10:00:00 ~ 2017-12-26 10:45:002017-12-27 10:00:00 ~ 2017-12-27 10:45:002017-12-28 10:00:00 ~ 2017-12-28 10:45:002017-12-29 10:00:00 ~ 2017-12-29 10:45:002017-12-30 10:00:00 ~ 2017-12-30 10:45:002017-12-31 10:00:00 ~ 2017-12-31 10:45:002018-01-01 10:00:00 ~ 2018-01-01 10:45:002018-01-02 10:00:00 ~ 2018-01-02 10:45:002018-01-03 10:00:00 ~ 2018-01-03 10:45:002018-01-04 10:00:00 ~ 2018-01-04 10:45:002018-01-05 10:00:00 ~ 2018-01-05 10:45:002018-01-06 10:00:00 ~ 2018-01-06 10:45:002018-01-07 10:00:00 ~ 2018-01-07 10:45:002018-01-08 10:00:00 ~ 2018-01-08 10:45:002018-01-09 10:00:00 ~ 2018-01-09 10:45:002018-01-10 10:00:00 ~ 2018-01-10 10:45:002018-01-11 10:00:00 ~ 2018-01-11 10:45:002018-01-12 10:00:00 ~ 2018-01-12 10:45:002018-01-13 10:00:00 ~ 2018-01-13 10:45:002018-01-14 10:00:00 ~ 2018-01-14 10:45:002018-01-15 10:00:00 ~ 2018-01-15 10:45:002018-01-16 10:00:00 ~ 2018-01-16 10:45:002018-01-17 10:00:00 ~ 2018-01-17 10:45:002018-01-18 10:00:00 ~ 2018-01-18 10:45:002018-01-19 10:00:00 ~ 2018-01-19 10:45:002018-01-20 10:00:00 ~ 2018-01-20 10:45:002018-01-21 10:00:00 ~ 2018-01-21 10:45:002018-01-22 10:00:00 ~ 2018-01-22 10:45:002018-01-23 10:00:00 ~ 2018-01-23 10:45:002018-01-24 10:00:00 ~ 2018-01-24 10:45:002018-01-25 10:00:00 ~ 2018-01-25 10:45:002018-01-26 10:00:00 ~ 2018-01-26 10:45:002018-01-27 10:00:00 ~ 2018-01-27 10:45:002018-01-28 10:00:00 ~ 2018-01-28 10:45:002018-01-29 10:00:00 ~ 2018-01-29 10:45:002018-01-30 10:00:00 ~ 2018-01-30 10:45:002018-01-31 10:00:00 ~ 2018-01-31 10:45:002018-02-01 10:00:00 ~ 2018-02-01 10:45:002018-02-02 10:00:00 ~ 2018-02-02 10:45:002018-02-03 10:00:00 ~ 2018-02-03 10:45:002018-02-04 10:00:00 ~ 2018-02-04 10:45:002018-02-05 10:00:00 ~ 2018-02-05 10:45:002018-02-06 10:00:00 ~ 2018-02-06 10:45:002018-02-07 10:00:00 ~ 2018-02-07 10:45:002018-02-08 10:00:00 ~ 2018-02-08 10:45:002018-02-09 10:00:00 ~ 2018-02-09 10:45:002018-02-10 10:00:00 ~ 2018-02-10 10:45:002018-02-11 10:00:00 ~ 2018-02-11 10:45:002018-02-12 10:00:00 ~ 2018-02-12 10:45:002018-02-13 10:00:00 ~ 2018-02-13 10:45:002018-02-14 10:00:00 ~ 2018-02-14 10:45:002018-02-15 10:00:00 ~ 2018-02-15 10:45:002018-02-16 10:00:00 ~ 2018-02-16 10:45:002018-02-17 10:00:00 ~ 2018-02-17 10:45:002018-02-18 10:00:00 ~ 2018-02-18 10:45:002018-02-19 10:00:00 ~ 2018-02-19 10:45:002018-02-20 10:00:00 ~ 2018-02-20 10:45:002018-02-21 10:00:00 ~ 2018-02-21 10:45:002018-02-22 10:00:00 ~ 2018-02-22 10:45:002018-02-23 10:00:00 ~ 2018-02-23 10:45:002018-02-24 10:00:00 ~ 2018-02-24 10:45:002018-02-25 10:00:00 ~ 2018-02-25 10:45:002018-02-26 10:00:00 ~ 2018-02-26 10:45:002018-02-27 10:00:00 ~ 2018-02-27 10:45:002018-02-28 10:00:00 ~ 2018-02-28 10:45:002018-03-01 10:00:00 ~ 2018-03-01 10:45:002018-03-02 10:00:00 ~ 2018-03-02 10:45:002018-03-03 10:00:00 ~ 2018-03-03 10:45:002018-03-04 10:00:00 ~ 2018-03-04 10:45:002018-03-05 10:00:00 ~ 2018-03-05 10:45:002018-03-06 10:00:00 ~ 2018-03-06 10:45:002018-03-07 10:00:00 ~ 2018-03-07 10:45:002018-03-08 10:00:00 ~ 2018-03-08 10:45:002018-03-09 10:00:00 ~ 2018-03-09 10:45:002018-03-10 10:00:00 ~ 2018-03-10 10:45:002018-03-11 10:00:00 ~ 2018-03-11 10:45:002018-03-12 10:00:00 ~ 2018-03-12 10:45:002018-03-13 10:00:00 ~ 2018-03-13 10:45:002018-03-14 10:00:00 ~ 2018-03-14 10:45:002018-03-15 10:00:00 ~ 2018-03-15 10:45:002018-03-16 10:00:00 ~ 2018-03-16 10:45:002018-03-17 10:00:00 ~ 2018-03-17 10:45:002018-03-18 10:00:00 ~ 2018-03-18 10:45:002018-03-19 10:00:00 ~ 2018-03-19 10:45:002018-03-20 10:00:00 ~ 2018-03-20 10:45:002018-03-21 10:00:00 ~ 2018-03-21 10:45:002018-03-22 10:00:00 ~ 2018-03-22 10:45:002018-03-23 10:00:00 ~ 2018-03-23 10:45:002018-03-24 10:00:00 ~ 2018-03-24 10:45:002018-03-25 10:00:00 ~ 2018-03-25 10:45:002018-03-26 10:00:00 ~ 2018-03-26 10:45:002018-03-27 10:00:00 ~ 2018-03-27 10:45:002018-03-28 10:00:00 ~ 2018-03-28 10:45:002018-03-29 10:00:00 ~ 2018-03-29 10:45:002018-03-30 10:00:00 ~ 2018-03-30 10:45:002018-03-31 10:00:00 ~ 2018-03-31 10:45:002018-04-01 10:00:00 ~ 2018-04-01 10:45:002018-04-02 10:00:00 ~ 2018-04-02 10:45:002018-04-03 10:00:00 ~ 2018-04-03 10:45:002018-04-04 10:00:00 ~ 2018-04-04 10:45:002018-04-05 10:00:00 ~ 2018-04-05 10:45:002018-04-06 10:00:00 ~ 2018-04-06 10:45:002018-04-07 10:00:00 ~ 2018-04-07 10:45:002018-04-08 10:00:00 ~ 2018-04-08 10:45:002018-04-09 10:00:00 ~ 2018-04-09 10:45:002018-04-10 10:00:00 ~ 2018-04-10 10:45:002018-04-11 10:00:00 ~ 2018-04-11 10:45:002018-04-12 10:00:00 ~ 2018-04-12 10:45:002018-04-13 10:00:00 ~ 2018-04-13 10:45:002018-04-14 10:00:00 ~ 2018-04-14 10:45:002018-04-15 10:00:00 ~ 2018-04-15 10:45:002018-04-16 10:00:00 ~ 2018-04-16 10:45:002018-04-17 10:00:00 ~ 2018-04-17 10:45:002018-04-18 10:00:00 ~ 2018-04-18 10:45:002018-04-19 10:00:00 ~ 2018-04-19 10:45:002018-04-20 10:00:00 ~ 2018-04-20 10:45:002018-04-21 10:00:00 ~ 2018-04-21 10:45:002018-04-22 10:00:00 ~ 2018-04-22 10:45:002018-04-23 10:00:00 ~ 2018-04-23 10:45:002018-04-24 10:00:00 ~ 2018-04-24 10:45:002018-04-25 10:00:00 ~ 2018-04-25 10:45:002018-04-26 10:00:00 ~ 2018-04-26 10:45:002018-04-27 10:00:00 ~ 2018-04-27 10:45:002018-04-28 10:00:00 ~ 2018-04-28 10:45:002018-04-29 10:00:00 ~ 2018-04-29 10:45:002018-04-30 10:00:00 ~ 2018-04-30 10:45:002018-05-01 10:00:00 ~ 2018-05-01 10:45:002018-05-02 10:00:00 ~ 2018-05-02 10:45:002018-05-03 10:00:00 ~ 2018-05-03 10:45:002018-05-04 10:00:00 ~ 2018-05-04 10:45:002018-05-05 10:00:00 ~ 2018-05-05 10:45:002018-05-06 10:00:00 ~ 2018-05-06 10:45:002018-05-07 10:00:00 ~ 2018-05-07 10:45:002018-05-08 10:00:00 ~ 2018-05-08 10:45:002018-05-09 10:00:00 ~ 2018-05-09 10:45:002018-05-10 10:00:00 ~ 2018-05-10 10:45:002018-05-11 10:00:00 ~ 2018-05-11 10:45:002018-05-12 10:00:00 ~ 2018-05-12 10:45:002018-05-13 10:00:00 ~ 2018-05-13 10:45:002018-05-14 10:00:00 ~ 2018-05-14 10:45:002018-05-15 10:00:00 ~ 2018-05-15 10:45:002018-05-16 10:00:00 ~ 2018-05-16 10:45:002018-05-17 10:00:00 ~ 2018-05-17 10:45:002018-05-18 10:00:00 ~ 2018-05-18 10:45:002018-05-19 10:00:00 ~ 2018-05-19 10:45:002018-05-20 10:00:00 ~ 2018-05-20 10:45:002018-05-21 10:00:00 ~ 2018-05-21 10:45:002018-05-22 10:00:00 ~ 2018-05-22 10:45:002018-05-23 10:00:00 ~ 2018-05-23 10:45:002018-05-24 10:00:00 ~ 2018-05-24 10:45:002018-05-25 10:00:00 ~ 2018-05-25 10:45:002018-05-26 10:00:00 ~ 2018-05-26 10:45:002018-05-27 10:00:00 ~ 2018-05-27 10:45:002018-05-28 10:00:00 ~ 2018-05-28 10:45:002018-05-29 10:00:00 ~ 2018-05-29 10:45:002018-05-30 10:00:00 ~ 2018-05-30 10:45:002018-05-31 10:00:00 ~ 2018-05-31 10:45:002018-06-01 10:00:00 ~ 2018-06-01 10:45:002018-06-02 10:00:00 ~ 2018-06-02 10:45:002018-06-03 10:00:00 ~ 2018-06-03 10:45:002018-06-04 10:00:00 ~ 2018-06-04 10:45:002018-06-05 10:00:00 ~ 2018-06-05 10:45:002018-06-06 10:00:00 ~ 2018-06-06 10:45:002018-06-07 10:00:00 ~ 2018-06-07 10:45:002018-06-08 10:00:00 ~ 2018-06-08 10:45:002018-06-09 10:00:00 ~ 2018-06-09 10:45:002018-06-10 10:00:00 ~ 2018-06-10 10:45:002018-06-11 10:00:00 ~ 2018-06-11 10:45:002018-06-12 10:00:00 ~ 2018-06-12 10:45:002018-06-13 10:00:00 ~ 2018-06-13 10:45:002018-06-14 10:00:00 ~ 2018-06-14 10:45:002018-06-15 10:00:00 ~ 2018-06-15 10:45:002018-06-16 10:00:00 ~ 2018-06-16 10:45:002018-06-17 10:00:00 ~ 2018-06-17 10:45:002018-06-18 10:00:00 ~ 2018-06-18 10:45:002018-06-19 10:00:00 ~ 2018-06-19 10:45:002018-06-20 10:00:00 ~ 2018-06-20 10:45:002018-06-21 10:00:00 ~ 2018-06-21 10:45:002018-06-22 10:00:00 ~ 2018-06-22 10:45:002018-06-23 10:00:00 ~ 2018-06-23 10:45:002018-06-24 10:00:00 ~ 2018-06-24 10:45:002018-06-25 10:00:00 ~ 2018-06-25 10:45:002018-06-26 10:00:00 ~ 2018-06-26 10:45:002018-06-27 10:00:00 ~ 2018-06-27 10:45:002018-06-28 10:00:00 ~ 2018-06-28 10:45:002018-06-29 10:00:00 ~ 2018-06-29 10:45:002018-06-30 10:00:00 ~ 2018-06-30 10:45:002018-07-01 10:00:00 ~ 2018-07-01 10:45:002018-07-02 10:00:00 ~ 2018-07-02 10:45:002018-07-03 10:00:00 ~ 2018-07-03 10:45:002018-07-04 10:00:00 ~ 2018-07-04 10:45:002018-07-05 10:00:00 ~ 2018-07-05 10:45:002018-07-06 10:00:00 ~ 2018-07-06 10:45:002018-07-07 10:00:00 ~ 2018-07-07 10:45:002018-07-08 10:00:00 ~ 2018-07-08 10:45:002018-07-09 10:00:00 ~ 2018-07-09 10:45:002018-07-10 10:00:00 ~ 2018-07-10 10:45:002018-07-11 10:00:00 ~ 2018-07-11 10:45:002018-07-12 10:00:00 ~ 2018-07-12 10:45:002018-07-13 10:00:00 ~ 2018-07-13 10:45:002018-07-14 10:00:00 ~ 2018-07-14 10:45:002018-07-15 10:00:00 ~ 2018-07-15 10:45:002018-07-16 10:00:00 ~ 2018-07-16 10:45:002018-07-17 10:00:00 ~ 2018-07-17 10:45:002018-07-18 10:00:00 ~ 2018-07-18 10:45:002018-07-19 10:00:00 ~ 2018-07-19 10:45:002018-07-20 10:00:00 ~ 2018-07-20 10:45:002018-07-21 10:00:00 ~ 2018-07-21 10:45:002018-07-22 10:00:00 ~ 2018-07-22 10:45:002018-07-23 10:00:00 ~ 2018-07-23 10:45:002018-07-24 10:00:00 ~ 2018-07-24 10:45:002018-07-25 10:00:00 ~ 2018-07-25 10:45:002018-07-26 10:00:00 ~ 2018-07-26 10:45:002018-07-27 10:00:00 ~ 2018-07-27 10:45:002018-07-28 10:00:00 ~ 2018-07-28 10:45:002018-07-29 10:00:00 ~ 2018-07-29 10:45:002018-07-30 10:00:00 ~ 2018-07-30 10:45:002018-07-31 10:00:00 ~ 2018-07-31 10:45:002018-08-01 10:00:00 ~ 2018-08-01 10:45:002018-08-02 10:00:00 ~ 2018-08-02 10:45:002018-08-03 10:00:00 ~ 2018-08-03 10:45:002018-08-04 10:00:00 ~ 2018-08-04 10:45:002018-08-05 10:00:00 ~ 2018-08-05 10:45:002018-08-06 10:00:00 ~ 2018-08-06 10:45:002018-08-07 10:00:00 ~ 2018-08-07 10:45:002018-08-08 10:00:00 ~ 2018-08-08 10:45:002018-08-09 10:00:00 ~ 2018-08-09 10:45:002018-08-10 10:00:00 ~ 2018-08-10 10:45:002018-08-11 10:00:00 ~ 2018-08-11 10:45:002018-08-12 10:00:00 ~ 2018-08-12 10:45:002018-08-13 10:00:00 ~ 2018-08-13 10:45:002018-08-14 10:00:00 ~ 2018-08-14 10:45:002018-08-15 10:00:00 ~ 2018-08-15 10:45:002018-08-16 10:00:00 ~ 2018-08-16 10:45:002018-08-17 10:00:00 ~ 2018-08-17 10:45:002018-08-18 10:00:00 ~ 2018-08-18 10:45:002018-08-19 10:00:00 ~ 2018-08-19 10:45:002018-08-20 10:00:00 ~ 2018-08-20 10:45:002018-08-21 10:00:00 ~ 2018-08-21 10:45:002018-08-22 10:00:00 ~ 2018-08-22 10:45:002018-08-23 10:00:00 ~ 2018-08-23 10:45:002018-08-24 10:00:00 ~ 2018-08-24 10:45:002018-08-25 10:00:00 ~ 2018-08-25 10:45:002018-08-26 10:00:00 ~ 2018-08-26 10:45:002018-08-27 10:00:00 ~ 2018-08-27 10:45:002018-08-28 10:00:00 ~ 2018-08-28 10:45:002018-08-29 10:00:00 ~ 2018-08-29 10:45:002018-08-30 10:00:00 ~ 2018-08-30 10:45:002018-08-31 10:00:00 ~ 2018-08-31 10:45:002018-09-01 10:00:00 ~ 2018-09-01 10:45:002018-09-02 10:00:00 ~ 2018-09-02 10:45:002018-09-03 10:00:00 ~ 2018-09-03 10:45:002018-09-04 10:00:00 ~ 2018-09-04 10:45:002018-09-05 10:00:00 ~ 2018-09-05 10:45:002018-09-06 10:00:00 ~ 2018-09-06 10:45:002018-09-07 10:00:00 ~ 2018-09-07 10:45:002018-09-08 10:00:00 ~ 2018-09-08 10:45:002018-09-09 10:00:00 ~ 2018-09-09 10:45:002018-09-10 10:00:00 ~ 2018-09-10 10:45:002018-09-11 10:00:00 ~ 2018-09-11 10:45:002018-09-12 10:00:00 ~ 2018-09-12 10:45:002018-09-13 10:00:00 ~ 2018-09-13 10:45:002018-09-14 10:00:00 ~ 2018-09-14 10:45:002018-09-15 10:00:00 ~ 2018-09-15 10:45:002018-09-16 10:00:00 ~ 2018-09-16 10:45:002018-09-17 10:00:00 ~ 2018-09-17 10:45:002018-09-18 10:00:00 ~ 2018-09-18 10:45:002018-09-19 10:00:00 ~ 2018-09-19 10:45:002018-09-20 10:00:00 ~ 2018-09-20 10:45:002018-09-21 10:00:00 ~ 2018-09-21 10:45:002018-09-22 10:00:00 ~ 2018-09-22 10:45:002018-09-23 10:00:00 ~ 2018-09-23 10:45:002018-09-24 10:00:00 ~ 2018-09-24 10:45:002018-09-25 10:00:00 ~ 2018-09-25 10:45:002018-09-26 10:00:00 ~ 2018-09-26 10:45:002018-09-27 10:00:00 ~ 2018-09-27 10:45:002018-09-28 10:00:00 ~ 2018-09-28 10:45:00
原创粉丝点击