Java Year Get getYear(final Date date)

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

Description

get Year

License

Open Source License

Declaration

public static int getYear(final Date date) 

Method Source Code

//package com.java2s;
/*/*from   ww  w.j a  va  2 s . com*/
 * #%L
 * Webstar Newsletter
 * %%
 * Copyright (C) 2013 Webstar Csoport Kft.
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, either version 3 of the 
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public 
 * License along with this program.  If not, see
 * <http://www.gnu.org/licenses/gpl-3.0.html>.
 * #L%
 */

import java.util.*;

public class Main {
    public static int getYear(final Date date) {
        if (date == null) {
            return 0;
        }
        Calendar cal = new GregorianCalendar();
        cal.setTime(date);
        return cal.get(Calendar.YEAR);
    }
}

Related

  1. getYear(Date date)
  2. getYear(Date date)
  3. getYear(Date date)
  4. getYear(Date date, TimeZone timeZone)
  5. getYear(Date dt)
  6. getYear(final String date)
  7. getYear(final String date)
  8. getYear(int year)
  9. getYear(long date)