Java Date to Year getYear(Date date)

Here you can find the source of getYear(Date date)

Description

Returns a int value indicating the year.

License

Open Source License

Parameter

Parameter Description
date the <code>Date</code> to be parsed.

Return

a int value of the year.

Declaration

public static int getYear(Date date) 

Method Source Code


//package com.java2s;
/*//from ww w .  j av  a 2  s . c  om
 * Copyright (c) Red de Pruebas C.A. All rights reserved.
 * RED DE PRUEBAS C.A. PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

import java.util.Calendar;
import java.util.Date;

public class Main {
    /**
     * Returns a <code>int</code> value indicating the year.
     * <p>
     * Parses a given <code>Date</code> to <code>Calendar</code> using
     * {@link #parseDateToCalendar} method and returns the value of the yaer.
     *
     * @param date the <code>Date</code> to be parsed.
     * @return a <code>int</code> value of the year.
     * @see #parseDateToCalendar(java.util.Date)
     * @see java.util.Calendar#get(int)
     * @see java.util.Calendar#YEAR
     * @since 0.1
     */
    public static int getYear(Date date) {
        return parseDateToCalendar(date).get(Calendar.YEAR);
    }

    /**
     * Returns a <code>Calendar</code> object setting Calendar's time with the
     * given <code>Date</code> object.
     * <p>
     * From a <code>Calendar</code> object based on the current time in the
     * default time zone with the default locale sets this Calendar's time with
     * the given <code>Date</code>.
     *
     * @param date the given Date.
     * @return a <code>Calendar</code> object setting Calendar's time with the
     * given <code>Date</code>
     * @see java.util.Calendar#getInstance()
     * @see java.util.Calendar#setTime(java.util.Date)
     * @since 0.1
     */
    public static Calendar parseDateToCalendar(Date date) {
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(date);
        return calendar;
    }
}

Related

  1. getYear(Date date)
  2. getYear(Date date)
  3. getYear(Date date)
  4. getYear(Date date)
  5. getYear(Date date)
  6. getYear(Date date)
  7. getYear(Date dateParam)
  8. getYear(Date start)
  9. getYear(final Date date)