Java Today todayAsSimpleIsoDate(Date date)

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

Description

Today as simple iso date.

License

Open Source License

Parameter

Parameter Description
date the date

Return

the string

Declaration

public static String todayAsSimpleIsoDate(Date date) 

Method Source Code

//package com.java2s;
/*/*  w w  w .  j a  v  a2 s. c om*/
  DA-NRW Software Suite | ContentBroker
  Copyright (C) 2013 Historisch-Kulturwissenschaftliche Informationsverarbeitung
  Universit?t zu K?ln
    
  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/>.
*/

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

public class Main {
    /**
     * Today as simple iso date.
     *
     * @param date the date
     * @return the string
     */
    public static String todayAsSimpleIsoDate(Date date) {

        Format formatter = new SimpleDateFormat("yyyyMMdd");
        return formatter.format(date);

    }
}

Related

  1. today()
  2. toDay(final String dateString)
  3. today(String format)
  4. today(String pattern)
  5. today(String strFormat)
  6. todayAsXSDDateString()
  7. todayAtDayEnd()
  8. todayDate()
  9. todayMinute()