Java Year Format getYyyyMMddWithoutDate()

Here you can find the source of getYyyyMMddWithoutDate()

Description

get Yyyy M Mdd Without Date

License

Apache License

Declaration

public static String getYyyyMMddWithoutDate() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {
    private final static SimpleDateFormat yyyyMMdd = new SimpleDateFormat("yyyyMMdd");

    public static String getYyyyMMddWithoutDate() {
        return yyyyMMdd.format(new Date());
    }/* w w w  .j a  v  a2 s. com*/
}

Related

  1. getYYYYMMDDFormat()
  2. getYYYYMMDDHH(Date date)
  3. getYYYYMMDDHHMISS()
  4. getYYYYMMDDHHMMSS()
  5. getYYYYMMDDHHMMSS(Date date)
  6. isPartialYear(String s, String yearFormat)
  7. isValidDateMMddyyyy(String theString)
  8. isYear(int y)
  9. isYear(String str, boolean nullCheck)