Here you can find the source of getShortDateString(long date, Locale locale)
public static String getShortDateString(long date, Locale locale)
//package com.java2s; import java.text.DateFormat; import java.util.Locale; public class Main { public static String getShortDateString(long date, Locale locale) { return getDateString(date, DateFormat.SHORT, locale); }/*from w w w . j av a2 s .com*/ public static String getDateString(long date, int style, Locale locale) { DateFormat formatter = DateFormat.getDateInstance(style, locale); return formatter.format(date); } }