Java Year Format formatSlashedMmDdYy()

Here you can find the source of formatSlashedMmDdYy()

Description

DateFormat for "MM/dd/yy".

License

LGPL

Declaration

public static DateFormat formatSlashedMmDdYy() 

Method Source Code

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

import java.text.DateFormat;

import java.text.SimpleDateFormat;

public class Main {
    /** DateFormat for "MM/dd/yy". */
    public static DateFormat formatSlashedMmDdYy() {
        return new SimpleDateFormat("MM/dd/yy");
    }//w w w.j a v  a2  s.c o m
}

Related

  1. formatInyyyyMMdd(java.util.Date date)
  2. formatMdDdYySlashed(Date date)
  3. formatMmDdYyyy(final Date date)
  4. formatMonth(int timeInfo, String yearInfo)
  5. formatNanosYearGMT(long nanos)
  6. formatTimeStampYearFirst(Date date)
  7. formatUniversalMonthYear(Date date)
  8. formatYear(Date d, Locale locale)
  9. formatYear(Date date)