Java yyyy formatPGNDate(final Date pDate)

Here you can find the source of formatPGNDate(final Date pDate)

Description

format PGN Date

License

Open Source License

Declaration

private static String formatPGNDate(final Date pDate) 

Method Source Code

//package com.java2s;
/*//from  ww w  .j  av  a  2 s .c  om
 $Id$

 Copyright (C) 2006-2007 by David Cotton

 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.

 You should have received a copy of the GNU General Public License along with
 this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
 Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {

    private static String formatPGNDate(final Date pDate) {
        assert pDate != null;

        return new SimpleDateFormat("yyyy.MM.dd").format(pDate);
    }
}

Related

  1. formatFecha(Date fecha)
  2. formatFromDate(Date date)
  3. formatG(Date date)
  4. formatHL7TSFormat4Date(Date time)
  5. formatJJJJMMTT(long time)
  6. formatRTGSDate(java.util.Date date)
  7. formatShortDate(Date date)
  8. formatSimpleDate(Date date)
  9. formatSimpleGermanDateString(Date date)