SimpleDateFormat timeFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm"); SimpleDateFormat currentDateFormat = new SimpleDateFormat("yyyy-MM-dd"); String currentTime = timeFormat.format(time); String currnetDate = currentDateFormat.format(time); String startTime = currnetDate + " " + String.valueOf("시작시간"); String endTime = currnetDate + " " + String.valueOf("끝나는시간"); // String -> Date Date dateSt..