Java Year Current getCurrentYear()

Here you can find the source of getCurrentYear()

Description

Returns the current year.

License

Open Source License

Return

the current year

Declaration

public static int getCurrentYear() 

Method Source Code

//package com.java2s;
/*//  ww w  . jav  a  2  s.c om
 * aTunes 1.14.0
 * Copyright (C) 2006-2009 Alex Aranda, Sylvain Gaudard, Thomas Beckers and contributors
 *
 * See http://www.atunes.org/wiki/index.php?title=Contributing for information about contributors
 *
 * http://www.atunes.org
 * http://sourceforge.net/projects/atunes
 *
 * 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 2
 * 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.
 */

import java.util.Calendar;

import java.util.Locale;

public class Main {
    /** The locale. */
    private static Locale locale = Locale.getDefault();

    /**
     * Returns the current year.
     * 
     * @return the current year
     */
    public static int getCurrentYear() {
        return getCalendar().get(Calendar.YEAR);
    }

    /**
     * Returns a Calendar instance.
     * 
     * @return a Calendar instance
     */
    public static Calendar getCalendar() {
        return Calendar.getInstance(locale);
    }
}

Related

  1. getCurMonthDayNumber(String strYear, String strMonth)
  2. getCurrentYear()
  3. getCurrentYear()
  4. getCurrentYear()
  5. getCurrentYear()
  6. getCurrentYear()
  7. getCurrentYear()
  8. getCurrentYear()
  9. getCurrentYearFirst()