Here you can find the source of currentAfterDay(Date date)
public static boolean currentAfterDay(Date date)
//package com.java2s; /** Copyright (c) 2013 MoMo, yuanhb@fusionskye.com All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License./*from w ww . java2s. com*/ * * Project Name : Tools * Package Name : net.yuanmomo.tools.time * Created on : Jun 24, 20131:47:23 PM * File Name : TimeUtil.java * * Author : yuanmomo * Blog : yuanmomo.net * Company : ?????????????????????? */ import java.util.Calendar; import java.util.Date; public class Main { public static boolean currentAfterDay(Date date) { Calendar cal = Calendar.getInstance(); cal.setTime(date); cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); Calendar current = Calendar.getInstance(); current.set(Calendar.HOUR_OF_DAY, 0); current.set(Calendar.MINUTE, 0); current.set(Calendar.SECOND, 0); current.set(Calendar.MILLISECOND, 0); return current.after(cal); } }