Java Today isToday(Date date, TimeZone timezone)

Here you can find the source of isToday(Date date, TimeZone timezone)

Description

Returns true if date is today.

License

Apache License

Parameter

Parameter Description
date a parameter

Return

true if date is today

Declaration

public static boolean isToday(Date date, TimeZone timezone) 

Method Source Code

//package com.java2s;
/*/* www .  jav a  2  s  . c om*/
 * Copyright 2011 gitblit.com.
 *
 * 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.
 */

import java.text.SimpleDateFormat;

import java.util.Date;

import java.util.TimeZone;

public class Main {
    /**
     * Returns true if date is today.
     *
     * @param date
     * @return true if date is today
     */
    public static boolean isToday(Date date, TimeZone timezone) {
        Date now = new Date();
        SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd");
        if (timezone != null) {
            df.setTimeZone(timezone);
        }
        return df.format(now).equals(df.format(date));
    }
}

Related

  1. isBeforeToday(Date date)
  2. isGreaterThanToday(String dateString)
  3. isToday(Date d1)
  4. isToday(Date date)
  5. isToday(Date date)
  6. isToday(Date dateTime)
  7. isToday(final Date date)
  8. isToday(final Date date)
  9. isToday(final Date date)